List stock adjustments (cursor)
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Add parameter in cookie access_token
Example:access_token: ********************
or
Request Code Samples
curl --location --request GET 'https://mock.apidog.com/m1/1052146-0-default/inventory/adjustments?cursor&limit&search&sortKey&sortDir&status&purpose&effect&variance_min&variance_max&value_min&value_max&tnx_date_from&tnx_date_to&date_from&date_to' \
--header 'Authorization: Bearer <token>'
Responses
{
"success": true,
"code": "LOGIN_OK",
"message": "Authenticated",
"data": {
"rows": [
{
"id": "ADJ-000234",
"tnxDate": "2025-09-30T10:22:13.000Z",
"product": "Basmati Rice 5kg",
"variance": -4,
"value": -26000,
"purpose": "damage",
"effect": "increase",
"date": "2025-09-30T12:01:45.000Z",
"status": "active"
}
],
"nextCursor": "string",
"hasNext": true
},
"meta": {
"page": 1,
"perPage": 50,
"total": 1
}
}
Modified at 2025-10-04 08:58:37