Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
OK
curl --request PUT \
--url https://api.skulabs.com/inventory/upsert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location_name": "<string>",
"item_id": "<string>",
"on_hand": 123,
"alert": 123,
"notes": "<string>"
}'/inventory/upsert
curl --request PUT \
--url https://api.skulabs.com/inventory/upsert \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location_name": "<string>",
"item_id": "<string>",
"on_hand": 123,
"alert": 123,
"notes": "<string>"
}'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK