Retrieve a specific order by ID
GET
/Order/{id}
id
in the endpoint pathRequest Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/Order/'
Response Response Example
{
"items": [
{
"modifiedDate": "2025-01-22T04:01:03.97",
"orderLineID": "1",
"customer": {
"id": "CUSTOMER1",
"name": "CUSTOMER1 FOR API (DO NOT DELETE)"
},
"product": {
"id": "FORAPI",
"description": "Product For API Do not Delete"
},
"orderUnit": "CS",
"deliveryDate": "2024-07-01T00:00:00",
"quantity": 5,
"orderType": "REGULAR",
"price": 150,
"basePrice": 100,
"vendor": {
"id": "FORAPI",
"name": "VENDOR FOR API Do not Delete"
},
"warehouse": {
"id": "DFLT",
"description": "Default warehouse"
},
"purchaseOrder": null,
"allowances": [
{
"allowanceDescription": "REBATE PER UNIT",
"componentName": "C1",
"benefitType": "Rebate Per Unit"
},
{
"allowanceDescription": "REBATE PER UNIT",
"componentName": "C2",
"benefitType": "Rebate Per Unit"
}
]
}
]
}
Request
Path Params
id
stringÂ
required
Responses
Modified at 2025-05-15 21:18:11