Orders

Retrieve the status of an order

The status of an order with specified orderId will be returned.

See response of 200 OK for status definitions.

get/orders/{orderId}/status

Path parameters

orderIdstring required
Example:a7dd1cf6-dc96-490b-bdf6-8685dbf5bb87

Response

OK

status'cancelled' | 'completed' | 'error' | 'pending'
statusdescription
pendingthe order is to be paid
cancelledmanually cancelled or timed out
completedpaid order
errorsome error happened to the order
paymentIdstring nullable
lastUpdatedstring date-time

Update date-time when order status ast last changed. It should be in ISO 8601 format (UTC).

Example response

{
  "paymentId": "956de7da-ece8-4ba1-acf4-37aeda78cb13"
}

Changes