Skip to main content
PUT
/
inventory
/
increase_on_hand
Inventory - Increase On Hand
curl --request PUT \
  --url https://api.skulabs.com/inventory/increase_on_hand \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "location_id": "<string>",
  "item_id": "<string>",
  "amount": 123,
  "notes": "<string>",
  "no_invalidate": "<string>",
  "lock_key": "<string>",
  "alert": 123
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
location_id
string
item_id
string
amount
number
notes
string
no_invalidate
string
lock_key
string
alert
number

Response

OK

I