Use this call to get labels by search token
Name | Type | Description |
---|---|---|
selectedRegions | List<Tuple> | Row numbers to retrieve item ids for |
token | Guid | Search Token |
location | Guid | Location id |
The following request format is required for this method.
POST https://eu-ext.linnworks.net//api/Inventory/GetStockItemLabels 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
selectedRegions=[
{
"Item1": 1,
"Item2": 2
},
{
"Item1": 1,
"Item2": 2
}
]&token=24d03194-90ae-49fb-9db0-24127b36294c&location=3acf0b47-03e1-4028-9f1b-e1b38cb9c437
This is an example response. Results may vary depending on your data.
[
{
"ItemNumber": "sample string 1",
"ItemTitle": "sample string 2",
"Quantity": 3,
"BinRack": "sample string 4",
"BatchNumber": "sample string 5",
"BatchInventoryId": 6,
"StockItemId": "84e093a9-bfb8-4afa-a192-f0b7f7ff45ed",
"StockItemIntId": 8
},
{
"ItemNumber": "sample string 1",
"ItemTitle": "sample string 2",
"Quantity": 3,
"BinRack": "sample string 4",
"BatchNumber": "sample string 5",
"BatchInventoryId": 6,
"StockItemId": "84e093a9-bfb8-4afa-a192-f0b7f7ff45ed",
"StockItemIntId": 8
}
]