Use this call to retrieve report about "Low stock in location"
Name | Type | Description |
---|---|---|
locationId | Nullable<Guid> | Used to specify report location id or null for combined |
numRows | Nullable<Int32> | Used to specify number of returned rows |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Dashboards/GetLowStockLevel
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.
locationId=9f71f921-dd3e-40d3-a874-954a9114a9cc&numRows=1
This is an example of the response JSON. Results will vary depending on your data.
[
{
"ItemTitle": "sample string 1",
"ItemNumber": "sample string 2",
"Quantity": 3,
"MinimumLevel": 4,
"InBooks": 5,
"Location": "sample string 6"
}
]