Products
Update stock for multiple warehouse products.
Performs batch stock updates (add/remove) for multiple products with optional reservation handling, location tracking, and cost management.
Authentication: Include your API key in the X-Api-Key header.
Header Parameters
X-Api-Key*string
Your API Key for authentication
Request Body
application/json
Stock movements to apply
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
curl -X POST "https://example.com/v1/warehouse-products/stock/update-list" \ -H "X-Api-Key: string" \ -H "Content-Type: application/json" \ -d '{}'[ { "warehouse_id": "string", "product_id": "string", "stock": 0, "reserved": 0 }]