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>"
}'
/inventory/decrease_on_hand
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>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK