Skip to main content
POST
/
location
/
add_item
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
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
id
string
item_id
string
on_hand
number<integer>
alert
number<integer>

Response

OK