Authorizations
Access token
Path Parameters
order number
Commerce Engine is now in beta. We're working hard to make it better for you.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/orders/{order_number}/payment-status \
--header 'Authorization: Bearer <token>'
{
"message": "order details",
"success": true,
"content": {
"status": "pending",
"amount_paid": 123,
"amount_unpaid": 123,
"is_retry_available": true
}
}
Retrieve payment status of a paricular order.
curl --request GET \
--url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/orders/{order_number}/payment-status \
--header 'Authorization: Bearer <token>'
{
"message": "order details",
"success": true,
"content": {
"status": "pending",
"amount_paid": 123,
"amount_unpaid": 123,
"is_retry_available": true
}
}
Access token
order number
Was this page helpful?