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": "3131f4e0-1c62-48ec-b6b2-55e835c02c20",
"ClientId": "783c1018-ee33-4ce3-972f-539a7047c19b",
"OrderId": "1a6f4701-0b28-42ef-af62-b8e64193bd55",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-06-25T16:38:46.3636037+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "30cee18b-ad5b-4da2-a2c2-02089dd1dd5e",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "1741e3c5-c4d1-48ab-a3e5-cfd5377c23cd",
"ProductNumber": "sample string 23",
"DetailList": null
},
{
"SupplierItemId": "3131f4e0-1c62-48ec-b6b2-55e835c02c20",
"ClientId": "783c1018-ee33-4ce3-972f-539a7047c19b",
"OrderId": "1a6f4701-0b28-42ef-af62-b8e64193bd55",
"SSCCNumber": "sample string 4",
"Picked": true,
"Delivered": true,
"ProductName": "sample string 7",
"BatchNumber": "sample string 8",
"BestBefore": "2026-06-25T16:38:46.3636037+02:00",
"Quantity": 10.0,
"NetWeight": 11.0,
"Grossweight": 12.0,
"Topload": 13.0,
"IsPickItem": true,
"PackageNumber": 15,
"TemperatureControlled": 16,
"PackagingTypeId": "30cee18b-ad5b-4da2-a2c2-02089dd1dd5e",
"PackagingTypeName": "sample string 18",
"PackagingTypeCode": "sample string 19",
"PackagingTypeWeight": 20.0,
"Volume": 21.0,
"ProductId": "1741e3c5-c4d1-48ab-a3e5-cfd5377c23cd",
"ProductNumber": "sample string 23",
"DetailList": null
}
]
}