GET /api/v2/exhibitors/{eventId}/list
Returns a paginated list of exhibitors for a given event, with full profile data for each exhibitor. Supports incremental synchronisation via a timestamp parameter.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/exhibitors/{eventId}/list
Path Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the event (in the URL path) |
Query Parameters
|
Parameter |
Type |
Required |
Default |
Description |
|---|---|---|---|---|
|
|
integer |
No |
|
Items per page. Maximum |
|
|
integer |
No |
|
Page number |
|
|
integer |
No |
— |
Returns only exhibitors updated after this Unix timestamp |
Key exhibitor object fields
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Exhibitor ID |
|
|
integer |
Account ID of the exhibitor owner |
|
|
string or null |
External ID |
|
|
string |
Display name |
|
|
string |
Primary email |
|
|
string or null |
Logo image URL |
|
|
object or null |
Country object |
|
|
object or null |
City object |
|
|
integer or null |
Exhibitor category ID |
|
|
integer[] or null |
Product category IDs |
|
|
string[] |
Tag names |
|
|
object[] |
Hall objects from the floor plan |
|
|
object[] |
Stand objects from the floor plan |
|
|
integer[] |
Account IDs of team members |
|
|
boolean |
Whether this is a parent exhibitor |
|
|
object |
Event-specific custom field values |
Example Request
curl -X GET "https://your-event-domain.com/api/v2/exhibitors/7/list?limit=100&page=1" \
-H "Authorization: Bearer your_api_key_here"