Name | Type | Description |
---|---|---|
request | GetWarehouseZonesByLocationRequest |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/Wms/GetWarehouseZonesByLocation
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
request={
"StockLocationIntId": 1,
"OnlyBinrackAssignable": true
}
This is an example of the response JSON. Results will vary depending on your data.
{
"Zones": [
{
"ZoneId": 1,
"ZoneTypeId": 2,
"Name": "sample string 3",
"ParentZoneId": 4,
"HierarchyLevel": 5,
"StockLocationIntId": 6
}
],
"ZoneTypes": [
{
"ZoneTypeId": 1,
"Name": "sample string 2",
"StockLocationIntId": 3
}
],
"ZoneGroups": [
{
"ZoneGroupId": 1,
"Name": "sample string 2"
}
],
"ZoneGroupsToZones": [
{
"ZoneId": 1,
"ZoneGroupId": 2
}
],
"ZonesBinracksCount": [
{
"ZoneId": 1,
"Count": 2
}
],
"ZonesToZonesHierarchy": [
{
"ZoneId": 1,
"ZoneIdParent": 2
}
]
}