Returns the list of BinRacks by BinRack Ids for WMS locations.
Name | Type | Description |
---|---|---|
request | GetBinrackByIdRequest |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/Stock/GetBinRacksById
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={
"BinrackIds": [
1
]
}
This is an example of the response JSON. Results will vary depending on your data.
{
"BinRacks": [
{
"BinRackId": 1,
"BinRackTypeId": 2,
"BinRack": "sample string 3",
"GeoPosition": {
"X": 1.0,
"Y": 2.0,
"Z": 3.0
},
"Dimension": {
"Width": 1.0,
"Depth": 2.0,
"Height": 3.0
},
"RoutingSequence": 4,
"MaxCapacityVolumetric": 5.0,
"CurrentFullPercentage": 6.0,
"MaxQuantityCapacity": 7,
"CurrentQuantity": 8,
"CurrentVolumetric": 9.0,
"OptimalReplenishFullPercentage": 10.0,
"CriticalReplenishFullPercentage": 11.0,
"ItemRestriction": true,
"GroupRestriction": true,
"LocationId": "d709cc94-ef6b-462d-92be-53d6106c32f1",
"TypeName": "sample string 15",
"StandardType": 16,
"IsVolumetric": true,
"AccessOrientation": "sample string 18",
"StorageGroups": [
"sample string 1"
],
"UniqueSkus": 19,
"ItemsInfo": {
"BinRackId": 1,
"NumberOfItems": 2,
"TotalQuantity": 3
},
"BinrackType": {
"BinRackTypeId": 1,
"Name": "sample string 2",
"StandardType": 3,
"LocationBound": "19e9583f-d963-4fa7-9f9d-f4d365feae9c",
"IsVolumetric": true,
"DefaultBatchStatus": "Unchanged"
},
"IsValidForStockItem": true
}
],
"Decisions": [
"sample string 1"
]
}