GET api/Order/{actionname}?externalID={externalID}
Retrieves order information by external ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| externalID |
External ID send when creating the order. |
string |
Required |
| actionname | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of 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:57:46.6028282+01:00",
"ShippedDate": "2026-02-04T01:57:46.6028282+01:00"
},
{
"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:57:46.6028282+01:00",
"ShippedDate": "2026-02-04T01:57:46.6028282+01:00"
}
]