cURL
curl --request POST \ --url https://{companyName}.api.joinluminous.com/external/api/v1/inventory/adjustments \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "adjustment_entries": [ { "warehouse_id": 123, "location_id": 123, "qty_onhand": 123, "product_id": 123, "sku": "<string>" } ], "remarks": "<string>" } '
{ "id": 123, "remarks": "<string>", "posted_by": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
Adjust on-hand stock for any given product in a given location. Either the product sku or product_id is required to identify the product.
sku
product_id
Authenticate using a bearer token. To obtain a token, contact [email protected]
Show child attributes
Optional remarks for the adjustment
Successful response
ID of the created adjustment
Remarks for the adjustment
ID of the user who posted the adjustment
Timestamp of when the adjustment was created
Timestamp of when the adjustment was last updated