GET /api/v2/exhibitor/get
Returns the full profile data for a single exhibitor, looked up by internal ID or External ID.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
GET /api/v2/exhibitor/get
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The event the exhibitor belongs to |
|
|
string |
Yes |
Lookup strategy: |
|
|
string |
Yes |
The value to match |
Key Response Fields
|
Field |
Type |
Description |
|---|---|---|
|
|
integer |
Exhibitor ID |
|
|
integer |
Account ID of the exhibitor owner |
|
|
string or null |
External ID if set |
|
|
string |
Display name |
|
|
string |
Primary email address |
|
|
string or null |
Logo image URL |
|
|
integer or null |
Exhibitor category ID |
|
|
integer[] or null |
Product category IDs |
|
|
string or null |
First assigned hall / stand name |
|
|
string or null |
All assigned halls/stands, semicolon-separated |
|
|
string or null |
Team member account IDs |
|
|
object |
Event-specific custom field values |
Error Responses
|
HTTP Code |
Condition |
Error Message |
|---|---|---|
|
400 |
|
|
|
400 |
Exhibitor not found by ID |
|
|
400 |
Exhibitor not found by External ID |
|
|
400 |
Exhibitor not linked to this event |
|
|
403 |
Missing or invalid API key |
|
Example Requests
# By internal ID
curl -X GET "https://your-event-domain.com/api/v2/exhibitor/get?event_id=7&filter=id&value=1096" \
-H "Authorization: Bearer your_api_key_here"
# By External ID
curl -X GET "https://your-event-domain.com/api/v2/exhibitor/get?event_id=7&filter=external_id&value=EXT-001" \
-H "Authorization: Bearer your_api_key_here"