GET exhibitor/getList

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

event_id

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

owner

integer

Account ID of the exhibitor owner

members

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

exhibitor/getList

You need exhibitor and member account IDs quickly — lightweight, no profiles

exhibitors/{eventId}/list

You need full exhibitor profiles with names, contact details, categories, etc.


Example Request

Bash
curl -X GET "https://your-event-domain.com/api/v2/exhibitor/getList?event_id=7" \
  -H "Authorization: Bearer your_api_key_here"