Get Order History By ID
The Get Order History By ID endpoint in the API provides an efficient method for accessing order records, status, and other specific data associated with individual orders.
get/orders/{orderId}
Path parameters
orderIdstring required
Unique identifier representing an order on the order platform.
Response
Successful response with the requested order.
Example response
{
"id": "703546147070869504",
"storeId": "a9f3ded6-c10b-4f17-ad42-5788e061b0a6",
"displayId": "4212331",
"currencyCode": "AED",
"instructions": "Please readuce the bag count of the order",
"delivery": {
"pickupTime": "2021-01-01T09:23:54.723Z"
},
"archivedItems": [
{
"price": {
"unitPrice": 1200,
"discountAmount": 1200,
"totalPrice": 1200
},
"amendItems": [
{
"quantity": 10
}
]
}
],
"scheduledOrder": {
"scheduledAt": "2020-08-02T09:23:54.723Z"
},
"placedAt": "2020-08-02T09:23:54.723Z"
}