Logo
Zoom Public API Documentation

List registration questions for an event

GET {{baseUrl}}/zoom_events/events/:eventId/questions

Use this API to list registration questions and fields that are to be answered by users while registering for an event. These questions are setup at event level.

Scopes: zoom_events_ticket_types:readzoom_events_ticket_types:read:admin

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "questions": [ { "field_name": "country", "required": "<boolean>", "title": "<string>", "question_id": "<string>" }, { "field_name": "address", "required": "<boolean>", "title": "<string>", "question_id": "<string>" } ], "custom_questions": [ { "options": [ "<string>", "<string>" ], "required": "<boolean>", "title": "<string>", "question_id": "<string>", "type": "short_answer", "min_length": "<integer>", "max_length": "<integer>" }, { "options": [ "<string>", "<string>" ], "required": "<boolean>", "title": "<string>", "question_id": "<string>", "type": "single_dropdown", "min_length": "<integer>", "max_length": "<integer>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/zoom_events/events/:eventId/questions' -H 'Accept: application/json'

ENDPOINTS