Use this call to retrieve StockItem AuditTrail list by filters
Name | Type | Description |
---|---|---|
request | GetInventoryItemAuditTrailPagedRequest | Set of filter options |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Inventory/GetInventoryItemAuditTrailPaged
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={
"Action": "sample string 1",
"FromDate": "2023-01-10T13:49:46.3055248+00:00",
"ToDate": "2023-01-10T13:49:46.3055248+00:00",
"PageSize": 4,
"PageNumber": 5
}
This is an example of the response JSON. Results will vary depending on your data.
{
"Items": [
{
"AuditType": "sample string 1",
"AuditTrailDate": "2023-01-10T13:49:55.5527201+00:00",
"AuditText": "sample string 3",
"UserName": "sample string 4",
"StockItemId": "d96d22cf-f145-48c5-807a-18127b021a2a",
"StockItemIntId": 2
}
],
"TotalItems": 1,
"CurrentPage": 2,
"EntriesPerPage": 3
}