cURL
curl --request POST \ --url https://api.example.com/vendor/inventory-items/{id}/location-levels \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "location_id": "<string>", "stocked_quantity": 123, "reserved_quantity": 123 } '
Creates 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 inventory level details.
The inventory level locationId.
The inventory level in stock.
The quantity reserved from the available stocked_quantity.
Ok