Skip to content
Orderboost
Esc
navigateopen⌘Jpreview

Qualify and pay a hosted buyer checkout with Tempo MPP

POST/api/v1/buyer-checkouts/mpp
Request body
requiredapplication/json
billingAddressobject
checkoutUrlstring<uri>required
min length 1 · max length 8192
customerobject
fulfillmentobject
Responses
200Checkout completed after a verified Tempo MPP payment
checkoutobjectrequired
Show properties
idstringrequired
min length 1
orderIdstringrequired
min length 1
statusstringrequired
Allowed:completed
paymentobjectrequired
Show properties
methodstringrequired
Allowed:tempo
referencestringrequired
min length 1
402MPP payment challenge for the qualified checkout
422Buyer or fulfillment information is still required
errorobjectrequired
Show properties
codestringrequired
min length 1
detailsobject
messagestringrequired
min length 1
Request
curl -X POST "https://dev.api.orderboost.org/api/v1/buyer-checkouts/mpp" \
  -H "Content-Type: application/json" \
  -d '{
  "billingAddress": {},
  "checkoutUrl": "<uri>",
  "customer": {},
  "fulfillment": {}
}'
Response
{
  "checkout": {
    "id": "string",
    "orderId": "string",
    "status": "completed"
  },
  "payment": {
    "method": "tempo",
    "reference": "string"
  }
}