- Introduction
- Warehouses
- Delivery Groups
- Delivery Ranges
- Delivery Drops
- Sales Rep Hierarchies
- Sales Reps
- Sales Rep Managers
- Ordering Groups
- Customers
- Attendees
- Vendors
- Brokers
- Booths
- Create a new Booth
- Update a Booth
- Get a list of Booths
- Retrieve a specific Booth by ID
- Delete a Booth
- Associate a product to a booth
- Get a list of products associated with a booth
- Associate multiple products to a booth
- Remove a product from a booth
- Associate a vendor to a booth
- Associate multiple vendors to a booth
- Get a list of vendors associated with a booth
- Remove a vendor from a booth
- Facilitators
- Brands
- Categories
- Products
- Create new pricing for a productPOST
- Update product pricing by price IDPUT
- Get a collection of price lists for productsGET
- Retrieve pricing by price IDGET
- Delete a price list by IDDELETE
- Create a new ProductPOST
- Update a ProductPUT
- Get a list of ProductsGET
- Retrieve a specific Product by IDGET
- Delete a ProductDELETE
- Get a list of Product InventoryGET
- Bulk update product inventoryPUT
- Orders
- Delivery Dates
- VIP Users
- Show Admins
- Exports
Bulk update product inventory
PUT
/ProductInventory
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/ProductInventory' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"productID": "string",
"inventory": 0
}
]'
Response Response Example
{
"successful": [
"string"
],
"failed": [
{
"productID": "string",
"message": "string"
}
]
}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
array of:
productID
stringÂ
required
inventory
integer  | nullÂ
optional
Examples
Responses
🟢200Success
application/json
Body
successful
array[string]
required
failed
array [object {2}]Â
required
productID
stringÂ
required
message
stringÂ
required
Modified at 2025-06-13 14:12:09