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": "82a18cd2-f368-405e-8270-e64b427109f5",
"ClientId": "7b4baf8c-62c1-4849-a48b-1aa27373de0f",
"OrderId": "1a917db8-8136-4735-8075-6e5f733b9296",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-08-24T14:40:42.8649321+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "fb7f7881-9f84-42f1-b214-82f851ff4507",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "b780f30c-dd69-4da1-a783-5c501cfe29b1",
"ProductNumber": "sample string 23",
"DetailList": null
},
{
"SupplierItemId": "82a18cd2-f368-405e-8270-e64b427109f5",
"ClientId": "7b4baf8c-62c1-4849-a48b-1aa27373de0f",
"OrderId": "1a917db8-8136-4735-8075-6e5f733b9296",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-08-24T14:40:42.8649321+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "fb7f7881-9f84-42f1-b214-82f851ff4507",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "b780f30c-dd69-4da1-a783-5c501cfe29b1",
"ProductNumber": "sample string 23",
"DetailList": null
}
]
}