/
Adjust Stock
This endpoint allows manual stock adjustments for a specific inventory bucket. The adjustment is applied as a delta (positive or negative) and recorded as an inventory movement.
- Writing off damaged stock from the damaged bucket. - Correcting stock discrepancies after physical counts. - Moving stock to QC hold for quality inspection.
Security
OAuth2
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory/adjustments
- Productionhttps://platform-api.quiqup.com/api/fulfilment/inventory/adjustments
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/inventory/adjustments
curl -i -X POST \
https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory/adjustments \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"bucket": "string",
"notes": "string",
"quantity_change": 0,
"reason": "string",
"sku": "string"
}'Response
{ "available": 0, "damaged": 0, "qc_hold": 0, "reserved": 0, "sku": "string", "total": 0 }