POST api/AllocatedCompleteItem/SalesOrder/ExtendedLocationFilter/{OwnerId}/{SalesOrderId}
Get all complete items allocated within the LocationFilter parameter for the specified SalesOrderId
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OwnerId |
Company id |
globally unique identifier |
Required |
| SalesOrderId | globally unique identifier |
Required |
Body Parameters
location filter for dispatch location and warehouse
LocationFilterParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| DispatchLocationIdList | Collection of globally unique identifier |
None. |
|
| WarehouseLocationIdList | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"DispatchLocationIdList": [
"ebe9a60d-108a-41bf-8010-e06128168cb0",
"209f9e70-42e1-46d8-86a9-382f4aaf5b06"
],
"WarehouseLocationIdList": [
"72ba87db-cef2-4982-ac0e-808dc948f772",
"f0d8d9bd-69ac-4da7-bb12-619534ef5da8"
]
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
list of allocated complete items
Collection of AllocatedCompleteItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ItemId | globally unique identifier |
None. |
|
| SSCC | string |
None. |
|
| BatchNumber | string |
None. |
|
| BestBefore | date |
None. |
|
| Quantity | decimal number |
None. |
|
| NetWeight | decimal number |
None. |
|
| GrossWeight | decimal number |
None. |
|
| SalesOrderId | globally unique identifier |
None. |
|
| SalesOrderNumber | string |
None. |
|
| ExtOrderNumber | string |
None. |
|
| PurchaseOrderNumber | string |
None. |
|
| DeliveryDate | date |
None. |
|
| LocationId | globally unique identifier |
None. |
|
| LocationStoreNo | string |
None. |
|
| LocationName | string |
None. |
|
| DispatchNo | integer |
None. |
|
| DispatchName | string |
None. |
|
| WarehouseNo | integer |
None. |
|
| WarehouseName | string |
None. |
|
| RackNo | integer |
None. |
|
| WidthNo | integer |
None. |
|
| HeightNo | integer |
None. |
|
| CustomerNumber | string |
None. |
|
| CustomerName | string |
None. |
|
| ProductNumber | string |
None. |
|
| ProductName | string |
None. |
|
| IsPicked | boolean |
None. |
|
| DeliveryAddressName | string |
None. |
|
| UltimateAddressName | string |
None. |
|
| Comment | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ItemId": "f30e7ee8-acd2-498f-9b8b-c3f3864627b7",
"SSCC": "sample string 2",
"BatchNumber": "sample string 3",
"BestBefore": "2026-06-25T16:17:46.6759535+02:00",
"Quantity": 5.0,
"NetWeight": 6.0,
"GrossWeight": 7.0,
"SalesOrderId": "72cc58fb-8f4b-4d32-9035-4235f94362fc",
"SalesOrderNumber": "sample string 9",
"ExtOrderNumber": "sample string 10",
"PurchaseOrderNumber": "sample string 11",
"DeliveryDate": "2026-06-25T16:17:46.6759535+02:00",
"LocationId": "dde77761-eb53-4d7e-bbb5-579b7b12b2b3",
"LocationStoreNo": "sample string 14",
"LocationName": "sample string 15",
"DispatchNo": 16,
"DispatchName": "sample string 17",
"WarehouseNo": 18,
"WarehouseName": "sample string 19",
"RackNo": 20,
"WidthNo": 21,
"HeightNo": 22,
"CustomerNumber": "sample string 23",
"CustomerName": "sample string 24",
"ProductNumber": "sample string 25",
"ProductName": "sample string 26",
"IsPicked": true,
"DeliveryAddressName": "sample string 28",
"UltimateAddressName": "sample string 29",
"Comment": "sample string 30"
},
{
"ItemId": "f30e7ee8-acd2-498f-9b8b-c3f3864627b7",
"SSCC": "sample string 2",
"BatchNumber": "sample string 3",
"BestBefore": "2026-06-25T16:17:46.6759535+02:00",
"Quantity": 5.0,
"NetWeight": 6.0,
"GrossWeight": 7.0,
"SalesOrderId": "72cc58fb-8f4b-4d32-9035-4235f94362fc",
"SalesOrderNumber": "sample string 9",
"ExtOrderNumber": "sample string 10",
"PurchaseOrderNumber": "sample string 11",
"DeliveryDate": "2026-06-25T16:17:46.6759535+02:00",
"LocationId": "dde77761-eb53-4d7e-bbb5-579b7b12b2b3",
"LocationStoreNo": "sample string 14",
"LocationName": "sample string 15",
"DispatchNo": 16,
"DispatchName": "sample string 17",
"WarehouseNo": 18,
"WarehouseName": "sample string 19",
"RackNo": 20,
"WidthNo": 21,
"HeightNo": 22,
"CustomerNumber": "sample string 23",
"CustomerName": "sample string 24",
"ProductNumber": "sample string 25",
"ProductName": "sample string 26",
"IsPicked": true,
"DeliveryAddressName": "sample string 28",
"UltimateAddressName": "sample string 29",
"Comment": "sample string 30"
}
]