cURL
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 } '
Updates inventory level of the InventoryItem in the specified location
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the InventoryItem.
The ID of the Stock Location.
The quantity of the InventoryItem in StockLocation.
The quantity reserved from the available stocked_quantity.
Accepted