- 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
Retrieve a specific Show Admin by ID
GET
/ShowAdmin/{id}
Show Admins
id
in the endpoint pathRequest Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/ShowAdmin/'
Response Response Example
200 - Show Admin
{
"id": "pa9p7a",
"userID": "USER1777",
"salutation": "Mrs",
"firstName": "Vaughn",
"initial": "E",
"lastName": "Bradtke",
"jobTitle": "Regional Brand Supervisor",
"phone": "(584) 887-6630",
"fax": "1-472-322-5806 x9754",
"scanID": "BWAONO",
"notificationEmail": "Ova.Nikolaus@yahoo.com",
"bio": "pulse junkie 🥊",
"active": false,
"attendanceType": "Onsite Only",
"canImpersonateAttendee": true,
"canImport": false
}
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 queryuserID
stringÂ
optional
<= 100 characters
salutation
stringÂ
optional
firstName
stringÂ
required
>= 1 characters<= 50 characters
initial
stringÂ
optional
<= 5 characters
lastName
stringÂ
optional
<= 50 characters
jobTitle
stringÂ
optional
phone
stringÂ
optional
<= 30 characters
fax
stringÂ
optional
<= 30 characters
scanID
stringÂ
optional
<= 100 characters
notificationEmail
stringÂ
optional
<= 100 characters
bio
stringÂ
optional
active
booleanÂ
optional
attendanceType
enum<string>Â
optional
Both
means that the attendee will be attending a physical show and allowed to log in to the website.Allowed values:
BothVirtual OnlyOnsite Only
Default:
Both
canImpersonateAttendee
booleanÂ
optional
canImport
booleanÂ
optional
🟠400Bad Request
Modified at 2025-05-15 21:28:41