curl --request PUT \
--url https://api.skulabs.com/inventory/decrease_on_hand \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"location_id": "<string>",
"item_id": "<string>",
"amount": 123,
"notes": "<string>"
}
'{
"success": true
}Decrease the on-hand inventory quantity for an item at a specific warehouse.
curl --request PUT \
--url https://api.skulabs.com/inventory/decrease_on_hand \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"location_id": "<string>",
"item_id": "<string>",
"amount": 123,
"notes": "<string>"
}
'{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
On-hand decreased
Whether the operation succeeded