curl --request POST \
--url https://api.example.com/vendor/inventory-items/location-levels/batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"create": [
{
"inventory_item_id": "<string>",
"stocked_quantity": 123,
"location_id": "<string>",
"incoming_quantity": 123
}
],
"update": [
{
"inventory_item_id": "<string>",
"stocked_quantity": 123,
"location_id": "<string>",
"incoming_quantity": 123
}
],
"delete": [
"<string>"
]
}
'