GET api/SupplierOrder/Complete/ClientId/{ClientId}/OrderId/{OrderId}
Get the specified complete supplier order including lines and items by ClientId and OrderId
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | globally unique identifier |
Required |
|
| OrderId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Complete supplier order: head, lines and items
SupplierOrderComplete| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderHead | SupplierOrder |
None. |
|
| OrderLines | Collection of SupplierOrderline |
None. |
|
| OrderItems | Collection of SupplierItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"OrderHead": null,
"OrderLines": null,
"OrderItems": [
{
"SupplierItemId": "aa2a0b2c-5a7e-43e7-8cbe-804b322902f0",
"ClientId": "f677840c-2d62-4d23-8407-fbbe5a95a76d",
"OrderId": "66afa947-43c0-48b6-8040-0f2b2971c4ee",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-08-24T14:40:34.840991+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "d66eb9c4-5549-4ed4-8a6d-2714cf3d2fd5",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "f953fc3b-b30a-4dd5-a612-dd7df7f7d91e",
"ProductNumber": "sample string 23",
"DetailList": null
},
{
"SupplierItemId": "aa2a0b2c-5a7e-43e7-8cbe-804b322902f0",
"ClientId": "f677840c-2d62-4d23-8407-fbbe5a95a76d",
"OrderId": "66afa947-43c0-48b6-8040-0f2b2971c4ee",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-08-24T14:40:34.840991+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "d66eb9c4-5549-4ed4-8a6d-2714cf3d2fd5",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "f953fc3b-b30a-4dd5-a612-dd7df7f7d91e",
"ProductNumber": "sample string 23",
"DetailList": null
}
]
}