# Update inventory levels (bulk) Endpoint: PUT /inventoryLevels Security: BearerAuth ## Request fields (application/json): - `companyId` (string) - `items` (array) - `items.itemId` (string, required) - `items.locationId` (string, required) - `items.qtyAvailable` (number) - `items.minimumQtyLevel` (number) - `items.maximumQtyLevel` (number) - `items.updateNotes` (string) ## Response 200 fields (application/json): - `success` (boolean) Example: true - `message` (string) Example: "Request completed successfully" - `data` (object) Example: {}