Read hosted buyer checkout status
GET
/api/v1/buyer-checkouts/{id}/statusAuthorization
AuthorizationBearer token (opaque checkout status capability) · headerrequiredPath parameters
idstringrequiredResponses
200Current hosted checkout status and terminal order identifier
One of:
object
statusstringrequiredAllowed:
pendingobject
orderIdstringrequiredmin length 1
statusstringrequiredAllowed:
completedobject
statusstringrequiredAllowed:
canceledobject
statusstringrequiredAllowed:
expiredRequest
curl -X GET "https://dev.api.orderboost.org/api/v1/buyer-checkouts/string/status" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://dev.api.orderboost.org/api/v1/buyer-checkouts/string/status", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.get(
"https://dev.api.orderboost.org/api/v1/buyer-checkouts/string/status",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"status": "pending"
}