- 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 product
- Update product pricing by price ID
- Get a collection of price lists for products
- Retrieve pricing by price ID
- Delete a price list by ID
- Create a new Product
- Update a Product
- Get a list of Products
- Retrieve a specific Product by ID
- Delete a Product
- Get a list of Product Inventory
- Bulk update product inventory
- Orders
- Delivery Dates
- VIP Users
- Show Admins
- Exports
Create a new Warehouse
POST
/Warehouse
Warehouses
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/Warehouse' \
--header 'Content-Type: application/json' \
--data-raw '{
"warehouseID": "WHOUSE1",
"warehouseName": "Warehouse 1",
"emailAddress": "warehouse1@email.com"
}'
Response Response Example
200 - Success
{
"id": "4d7g87",
"warehouseID": "WHOUSE1",
"warehouseName": "Warehouse 1",
"emailAddress": "warehouse1@email.com"
}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
warehouseID
stringÂ
required
Example:
WHOUSE1
warehouseName
stringÂ
required
Example:
Warehouse 1
emailAddress
stringÂ
optional
Example:
warehouse1@email.com
Examples
Responses
🟢200OK
application/json
Body
id
stringÂ
read-onlyoptional
modifiedDate
string <date-time>
read-onlyoptional
modifiedAfter
parameter in a querywarehouseID
stringÂ
required
Example:
WHOUSE1
warehouseName
stringÂ
required
Example:
Warehouse 1
emailAddress
stringÂ
optional
Example:
warehouse1@email.com
🟢201Created
🟠400Bad Request
Modified at 2025-05-16 15:43:46