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": "a0b02dfe-7460-48d1-a2e9-fe9794d1f766",
"ClientId": "6272d718-12b3-4f4b-9ec7-7861a6524c53",
"OrderId": "80b0f317-de34-439b-a612-f498df96ffd2",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-06-25T10:46:57.5303545+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "0d93b056-7100-4eae-aacc-d3fb92d85622",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "549801d4-033a-47a4-87c3-71501067f1bc",
"ProductNumber": "sample string 23",
"DetailList": null
},
{
"SupplierItemId": "a0b02dfe-7460-48d1-a2e9-fe9794d1f766",
"ClientId": "6272d718-12b3-4f4b-9ec7-7861a6524c53",
"OrderId": "80b0f317-de34-439b-a612-f498df96ffd2",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-06-25T10:46:57.5303545+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "0d93b056-7100-4eae-aacc-d3fb92d85622",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "549801d4-033a-47a4-87c3-71501067f1bc",
"ProductNumber": "sample string 23",
"DetailList": null
}
]
}