Retruns batch header and only batch inventory for provided batch
Name | Type | Description |
---|---|---|
request | GetBatchInventoryByIdRequest |
The following request format is required for this method.
POST https://eu-ext.linnworks.net//api/Inventory/GetBatchInventoryById HTTP/1.1
Host: eu-ext.linnworks.net
Connection: keep-alive
Accept: application/json, text/javascript, */*; q=0.01
Origin: https://www.linnworks.net
Accept-Language: en
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Referer: https://www.linnworks.net/
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
request={
"BatchInventoryIds": [
1,
2
],
"LoadRelatedInventoryLines": true
}
This is an example response. Results may vary depending on your data.
{
"Batches": [
{
"BatchId": 1,
"SKU": "sample string 2",
"InventoryTrackingType": 3,
"StockItemId": "93d3323b-82f0-4e00-9dd6-5604263080fc",
"BatchNumber": "sample string 5",
"ExpiresOn": "2021-02-21T11:27:28.8708207+00:00",
"SellBy": "2021-02-21T11:27:28.8708207+00:00",
"Inventory": [
null,
{
"BatchInventoryId": 1,
"BatchId": 2,
"StockLocationId": "5a349224-fb6a-49d3-8c38-7a51cb024c0d",
"BinRack": "sample string 4",
"PrioritySequence": 5,
"Quantity": 6,
"StockValue": 7.0,
"StartQuantity": 8,
"PickedQuantity": 9,
"BatchStatus": "Available",
"IsDeleted": false,
"WarehouseBinrackStandardType": null,
"WarehouseBinrackTypeName": null,
"InTransfer": null,
"BinRackId": null,
"WarehouseBinrackTypeId": null
}
],
"IsDeleted": true
},
{
"BatchId": 1,
"SKU": "sample string 2",
"InventoryTrackingType": 3,
"StockItemId": "93d3323b-82f0-4e00-9dd6-5604263080fc",
"BatchNumber": "sample string 5",
"ExpiresOn": "2021-02-21T11:27:28.8708207+00:00",
"SellBy": "2021-02-21T11:27:28.8708207+00:00",
"Inventory": [
null,
{
"BatchInventoryId": 1,
"BatchId": 2,
"StockLocationId": "5a349224-fb6a-49d3-8c38-7a51cb024c0d",
"BinRack": "sample string 4",
"PrioritySequence": 5,
"Quantity": 6,
"StockValue": 7.0,
"StartQuantity": 8,
"PickedQuantity": 9,
"BatchStatus": "Available",
"IsDeleted": false,
"WarehouseBinrackStandardType": null,
"WarehouseBinrackTypeName": null,
"InTransfer": null,
"BinRackId": null,
"WarehouseBinrackTypeId": null
}
],
"IsDeleted": true
}
]
}