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.
GET | POST https://eu-ext.linnworks.net/api/Inventory/GetStockItemLabels
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.
selectedRegions=[
{
"Item1": 1,
"Item2": 2
}
]&token=51d0e8a7-283b-43e8-9a03-e96b1c58b121&location=1b8d0952-dbb4-4e91-8f19-0f5db331206f
This is an example of the response JSON. Results will 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,
"LocationId": "b7a68bc5-f5d7-433c-b61e-f5580998fc3c",
"StockItemId": "6ded53d1-07af-4830-8f5d-2c669a305217",
"StockItemIntId": 9
}
]