Logo
Zoom Public API Documentation

List registration questions

GET {{baseUrl}}/webinars/:webinarId/registrants/questions

List registration questions and fields that are to be answered by users while registering for a webinar.

Scheduling a webinar with registration requires your registrants to complete a brief form with fields and questions before they can receive the link to join the webinar.

Prerequisites:

  • Pro or higher plan with the webinar add-on.

Scopes: webinar:read:admin,webinar:read

Rate Limit Label: LIGHT

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "custom_questions": [ { "answers": [ "<string>", "<string>" ], "required": "<boolean>", "title": "<string>", "type": "single_dropdown" }, { "answers": [ "<string>", "<string>" ], "required": "<boolean>", "title": "<string>", "type": "single_radio" } ], "questions": [ { "field_name": "country", "required": "<boolean>" }, { "field_name": "state", "required": "<boolean>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/webinars/:webinarId/registrants/questions' -H 'Accept: application/json'

ENDPOINTS