Listing attendees
To list all event attendees in your event environment you may use the event.person.find
endpoint with multiple filters and pagination. The required query attributes for this endpoint are tokenID
, eventID
and selection
, and we have several optional attributes for filtering and pagination.
To retrieve the full profile of the attendee (including custom fields), you must send the fullProfile
query attribute with value 1.
Selection
query attribute
Selection
query attributeThe selection
query attribute accepts the following values:
The selection
query attribute allows stacking (AND operation) by separating values with a pipe. Example: selection=printed|present
. It also allows complex stacking for a certain key, like tags
. Example: selection=printed|present|tags:29124,4255
.
Key-value filtering
We also have the following optional query attributes as filters:
You can also use query
and queryKey
instead of using the field name as the query attribute directly if you prefer.
You can also search by custom fields using the feedback_$feedbackID
format. Example:
Pagination
To paginate you can use limit
and offset
query attributes and to get the total amount of events listed in your account (used to build pagination UI and calculate the amount of pages) you should send the paginated
query attribute with value 1
.
Ordering
To order the events you can use the following query attributes: order
and orderOrientation
. The orderOrientation
attribute accepts ASC
(ascending) and DESC
(descending) as values
and the order
query attribute accepts the following values:
Example
Here is an example of this API call:
Spreadsheet reports
To generate a spreadsheet report out of that API call, you can send the format
attribute with the value excel-daemon
. Excel spreadsheets takes a while to generate and they will show up in your Report center
, but you can also retrieve them using the download.find
endpoint.
Last updated