curl --request POST \
--url https://api.skulabs.com/location/add_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"item_id": "<string>",
"on_hand": 123,
"alert": 123
}'
/location/add_item
curl --request POST \
--url https://api.skulabs.com/location/add_item \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"item_id": "<string>",
"on_hand": 123,
"alert": 123
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK