InventoryProducts
List adjustments for an Inventory Product
This endpoint retrieves a list of all the adjustments for the given inventory product.
get/inventory/products/{productId}/adjustments
Query parameters
pageinteger
The page to retrieve results from
per_pageinteger
The number of results to return per page
Response
The adjustments for the inventory product were successfully retrieved
Example response
{
"data": [
{
"quantity": 10.5,
"reason_code": "Professional Use",
"reason_description": "Stock used for professional use",
"created_at": "2024-05-01T00:00:00Z"
}
],
"meta": {
"from": 1,
"to": 2,
"total": 2,
"current_page": 1,
"last_page": 2,
"per_page": 15,
"path": "http://example.com/api"
},
"links": {
"first": "http://example.com?page=1",
"next": "https://example.com?page=3",
"prev": "https://example.com?page=1",
"last": "https://example.com?page=4"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.