GET orders/{id}/status

Get only the status of a single order by ID.

Request

URL parameters

These parameters are specified as part of the URL.

Property Description Type Details
id The order ID. string Required

Response

Body

The status.

Property Description Type Details
Id The ID of the order. string -
Order The order status. OrderStatus -
Payment The payment status. Only present after payment screen setup. PaymentStatus Payment screen only
{
  "id": "83432183",
  "order": "Created",
  "payment": "Open"
}
<?xml version="1.0"?>
<Status xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>83432183</Id>
  <Order>Created</Order>
  <Payment>Open</Payment>
</Status>