Skip to main content
POST
/
vendor
/
inventory-items
/
{id}
/
location-levels
/
{location_id}
Update inventory level
curl --request POST \
  --url https://api.example.com/vendor/inventory-items/{id}/location-levels/{location_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "stocked_quantity": 123,
  "reserved_quantity": 123
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the InventoryItem.

location_id
string
required

The ID of the Stock Location.

Body

application/json
stocked_quantity
number

The quantity of the InventoryItem in StockLocation.

reserved_quantity
number

The quantity reserved from the available stocked_quantity.

Response

202

Accepted