Logo
Zoom Public API Documentation

List tickets

GET {{baseUrl}}/zoom_events/events/:eventId/tickets?external_ticket_id=<string>&email=<string>&ticket_type_id=<string>&next_page_token=<string>&page_size=30

Use this API to retrieve the ticket information of an event.

Scopes: zoom_events_tickets:readzoom_events_tickets:read:admin

Rate Limit Label: LIGHT

 

Body PARAM

Key Datatype Required Description 
external_ticket_id
string The ID of the external ticket.
email
string The email of registrant.
ticket_type_id
string The ID of the ticket type.
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.
page_size
number The number of records returned in a single API call. Max 300



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "total_records": "<number>", "next_page_token": "<string>", "tickets": [ { "ticket_id": "<string>", "ticket_type_id": "<string>", "external_ticket_id": "<string>", "event_join_link": "<string>", "send_notification": "<boolean>", "email": "<string>", "ticket_role_type": "company_zoom_room", "first_name": "<string>", "last_name": "<string>", "address": "<string>", "city": "<string>", "state": "<string>", "zip": "<string>", "country": "<string>", "phone": "<string>", "industry": "<string>", "job_title": "<string>", "organization": "<string>", "organization_size": "<string>", "custom_questions": [ { "title": "<string>", "answer": "<string>" }, { "title": "<string>", "answer": "<string>" } ] }, { "ticket_id": "<string>", "ticket_type_id": "<string>", "external_ticket_id": "<string>", "event_join_link": "<string>", "send_notification": "<boolean>", "email": "<string>", "ticket_role_type": "speaker", "first_name": "<string>", "last_name": "<string>", "address": "<string>", "city": "<string>", "state": "<string>", "zip": "<string>", "country": "<string>", "phone": "<string>", "industry": "<string>", "job_title": "<string>", "organization": "<string>", "organization_size": "<string>", "custom_questions": [ { "title": "<string>", "answer": "<string>" }, { "title": "<string>", "answer": "<string>" } ] } ] }



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

ENDPOINTS