Get audit trail for batches
Name | Type | Description |
---|---|---|
request | GetBatchAuditRequest |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Inventory/GetBatchAudit
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={
"ItemId": "129940c9-6f42-433a-99e8-ad5171bf5c1a"
}
This is an example of the response JSON. Results will vary depending on your data.
{
"response": [
{
"BatchId": 1,
"BatchInventoryId": 2,
"QuantityDelta": 3,
"StockValueDelta": 4.0,
"ChangeNote": "sample string 5",
"Username": "sample string 6",
"ChangeDate": "2023-01-10T13:49:55.2230225+00:00",
"BinRack": "sample string 8",
"BatchNumber": "sample string 9",
"Location": "sample string 10",
"fkJobId": 1,
"OrderId": 1
}
]
}