Logo
Zoom Public API Documentation

List session polls

GET {{baseUrl}}/zoom_events/events/:eventId/sessions/:sessionId/polls

List all the polls of a session.

Scopes: zoom_events_sessions:readzoom_events_sessions:read:admin

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "total_records": "<number>", "polls": [ { "anonymous": "<boolean>", "poll_type": 3, "title": "<string>", "id": "<string>", "status": "active", "questions": [ { "name": "<string>", "type": "matching", "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "prompts": [ "<string>", "<string>" ], "prompt_right_answers": [ "<string>", "<string>" ], "rating_max_label": "<string>", "rating_max_value": "<integer>", "rating_min_label": "<string>", "rating_min_value": "<integer>", "right_answers": [ "<string>" ], "show_as_dropdown": false }, { "name": "<string>", "type": "fill_in_the_blank", "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "prompts": [ "<string>", "<string>" ], "prompt_right_answers": [ "<string>", "<string>" ], "rating_max_label": "<string>", "rating_max_value": "<integer>", "rating_min_label": "<string>", "rating_min_value": "<integer>", "right_answers": [ "<string>" ], "show_as_dropdown": false } ] }, { "anonymous": "<boolean>", "poll_type": 1, "title": "<string>", "id": "<string>", "status": "inactive", "questions": [ { "name": "<string>", "type": "multiple", "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "prompts": [ "<string>", "<string>" ], "prompt_right_answers": [ "<string>", "<string>" ], "rating_max_label": "<string>", "rating_max_value": "<integer>", "rating_min_label": "<string>", "rating_min_value": "<integer>", "right_answers": [ "<string>" ], "show_as_dropdown": false }, { "name": "<string>", "type": "long_answer", "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "prompts": [ "<string>", "<string>" ], "prompt_right_answers": [ "<string>", "<string>" ], "rating_max_label": "<string>", "rating_max_value": "<integer>", "rating_min_label": "<string>", "rating_min_value": "<integer>", "right_answers": [ "<string>" ], "show_as_dropdown": false } ] } ] }



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

ENDPOINTS