- 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 BoothPOST
- Update a BoothPUT
- Get a list of BoothsGET
- Retrieve a specific Booth by IDGET
- Delete a BoothDELETE
- Associate a product to a boothPOST
- Get a list of products associated with a boothGET
- Associate multiple products to a boothPUT
- Remove a product from a boothDELETE
- Associate a vendor to a boothPOST
- Associate multiple vendors to a boothPUT
- Get a list of vendors associated with a boothGET
- Remove a vendor from a boothDELETE
- 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
Retrieve a specific Booth by ID
GET
/Booth/{id}
Booths
id
in the endpoint pathRequest Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/Booth/'
Response Response Example
200 - Booth
{
"id": "ap89fh",
"boothID": "BOOTH7609",
"boothName": "Tools",
"showVendorSelection": false,
"paid": true,
"targetDeviceCount": 17,
"boothConfig": "Default",
"aboutSummary": "incididunt est dolore",
"aboutDetail": "Ut mollit fugiat culpa",
"boothClass": "C",
"boothType": "Physical",
"contactLink": "https://exhausted-effector.com/",
"contactLinkDescription": "nutritious-smoke",
"hideFromIndirectUsers": false,
"displayOrder": 9,
"testBooth": true,
"extraNote": "reprehenderit voluptate aliquip"
}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
stringÂ
required
Responses
🟢200OK
application/json
Body
id
stringÂ
read-onlyoptional
modifiedDate
string <date-time>
read-onlyoptional
modifiedAfter
parameter in a queryboothID
stringÂ
required
>= 1 characters
boothName
stringÂ
required
>= 1 characters
showVendorSelection
booleanÂ
optional
paid
booleanÂ
deprecated
targetDeviceCount
integer <int32>
optional
boothConfig
stringÂ
optional
Default
.aboutSummary
stringÂ
optional
aboutDetail
stringÂ
optional
boothClass
enum<string>Â
optional
Allowed values:
ABCDE
boothType
enum<string>Â
Booth Type
Both
indicates that the booth will be present at the physical event and available for online ordering.Allowed values:
BothCloudPhysical
Default:
Both
contactLink
stringÂ
optional
contactLinkDescription
stringÂ
optional
hideFromIndirectUsers
booleanÂ
optional
displayOrder
integer <int32>
optional
testBooth
booleanÂ
optional
extraNote
stringÂ
optional
vendors
array[string]
required
🟠400Bad Request
Modified at 2025-05-15 20:36:50