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": "2c1bd543-f461-485c-aa27-e4521a0765f4",
"ClientId": "e2574088-2ea4-4ed2-8949-3c149ebc0f6d",
"OrderId": "4497724d-970e-4ba7-bf77-a0be1b166867",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-06-25T16:17:44.0082637+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "31b12ae4-37e5-484b-acc6-000e106202cc",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "cf711000-8d93-4171-8b2c-959e62df6cbc",
"ProductNumber": "sample string 23",
"DetailList": null
},
{
"SupplierItemId": "2c1bd543-f461-485c-aa27-e4521a0765f4",
"ClientId": "e2574088-2ea4-4ed2-8949-3c149ebc0f6d",
"OrderId": "4497724d-970e-4ba7-bf77-a0be1b166867",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-06-25T16:17:44.0082637+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "31b12ae4-37e5-484b-acc6-000e106202cc",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "cf711000-8d93-4171-8b2c-959e62df6cbc",
"ProductNumber": "sample string 23",
"DetailList": null
}
]
}