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 OrderGetModelName | 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": "2025-09-08T15:30:38.3232177+02:00", "ShippedDate": "2025-09-08T15:30:38.3232177+02: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": "2025-09-08T15:30:38.3232177+02:00", "ShippedDate": "2025-09-08T15:30:38.3232177+02:00" } ]