/api/v3/events/{eventId}/registrants
Authentication: Requires API Key in the request header.
Authorization: The event must belong to the account associated with the API token. Returns 403 if the event belongs to a different account.
Path Parameters:
Query Parameters:
Response: Paginated list of registrant objects for the specified event.
Rate limit: Once every 1 second for unique requests.
Pagination: This endpoint uses cursor-based pagination with a default page size of 100 registrants. To iterate through all results:
- Make the first request without a
cursorparameter - If
page.next_cursoris notnull, make another request withcursorset to that value - Repeat until
page.next_cursorisnull
200 OKRegistrants retrieved successfully.401 UnauthorizedAuthentication failed (missing or invalid API token).403 ForbiddenEvent does not belong to this account.404 Not FoundEvent not found.500 Internal Server ErrorUnexpected server error.