GET /api/v2/exhibitor/getList
Returns a lightweight map of all exhibitor IDs for a given event, each entry containing the owner account ID and, when present, the IDs of team members. Use this endpoint to quickly enumerate exhibitor and member account IDs without fetching full profiles.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/exhibitor/getList
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the event |
Response
The data object is keyed by exhibitor ID (as a string). Each value contains:
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Account ID of the exhibitor owner |
|
|
integer[] |
Account IDs of team members. Only present when the exhibitor has at least one member |
When to use this vs GET /api/v2/exhibitors/{eventId}/list
|
Endpoint |
Use when |
|---|---|
|
|
You need exhibitor and member account IDs quickly — lightweight, no profiles |
|
|
You need full exhibitor profiles with names, contact details, categories, etc. |
Example Request
curl -X GET "https://your-event-domain.com/api/v2/exhibitor/getList?event_id=7" \
-H "Authorization: Bearer your_api_key_here"