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: Rate Limit Label: zoom_events_ticket_types:read
zoom_events_ticket_types:read:admin
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>"
}
]
} |
ENDPOINTS