GET api/Order/{id}
Retrieves order information on the orderID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
OrderID received when sending in the order. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
OrderGetModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | integer |
None. |
|
| ExternalID | string |
None. |
|
| Status | string |
None. |
|
| Description | string |
None. |
|
| TrackingCode | string |
None. |
|
| ShipmentMethod | string |
None. |
|
| StatusID |
1 ORDERED - Order has been received
|
integer |
None. |
| OrderCreationDate | date |
None. |
|
| ShippedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderID": 1,
"ExternalID": "sample string 2",
"Status": "sample string 3",
"Description": "sample string 4",
"TrackingCode": "sample string 5",
"ShipmentMethod": "sample string 6",
"StatusID": 7,
"OrderCreationDate": "2026-02-04T01:56:00.1318939+01:00",
"ShippedDate": "2026-02-04T01:56:00.1318939+01:00"
}