Logo
Zoom Public API Documentation

Event Registrations Report

GET {{baseUrl}}/zoom_events/events/:eventId/reports/ticket_registration?page_size=30&next_page_token=<string>

Use this API to retrieve event ticket registrations.

Scopes: zoom_events_reports.readzoom_events_reports:read:admin

Rate Limit Label: HEAVY

 

Body PARAM

Key Datatype Required Description 
page_size
number The number of records returned in a single API call. Max 300
next_page_token
string The next page token paginates through a set of large results. A next page token is returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "total_records": "<number>", "next_page_token": "<string>", "registrations": [ { "display_name": "<string>", "email": "<string>", "opt_in_marketing": 1, "marketing_consent_prechecked": 0, "register_date": "<dateTime>", "event_attendance": "attended", "attendance_type": [ "hybrid", "hybrid" ], "registration_method": "self-registration", "tickets": [ { "ticket_type_name": "<string>", "ticket_type_id": "<string>", "ticket_id": "<string>", "questions": [ { "title": "<string>", "answer": "<string>" }, { "title": "<string>", "answer": "<string>" } ] }, { "ticket_type_name": "<string>", "ticket_type_id": "<string>", "ticket_id": "<string>", "questions": [ { "title": "<string>", "answer": "<string>" }, { "title": "<string>", "answer": "<string>" } ] } ] }, { "display_name": "<string>", "email": "<string>", "opt_in_marketing": 1, "marketing_consent_prechecked": 0, "register_date": "<dateTime>", "event_attendance": "attended", "attendance_type": [ "hybrid", "hybrid" ], "registration_method": "other", "tickets": [ { "ticket_type_name": "<string>", "ticket_type_id": "<string>", "ticket_id": "<string>", "questions": [ { "title": "<string>", "answer": "<string>" }, { "title": "<string>", "answer": "<string>" } ] }, { "ticket_type_name": "<string>", "ticket_type_id": "<string>", "ticket_id": "<string>", "questions": [ { "title": "<string>", "answer": "<string>" }, { "title": "<string>", "answer": "<string>" } ] } ] } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/zoom_events/events/:eventId/reports/ticket_registration?page_size=30&next_page_token=<string>?page_size=30&next_page_token=<string>' -H 'Accept: application/json'

ENDPOINTS