Logo
Zoom Public API Documentation

List meeting polls

GET {{baseUrl}}/meetings/:meetingId/polls?anonymous=<boolean>

Polls allow the meeting host to survey attendees. List all polls of a meeting.

Prerequisites:

  • Host user type must be Pro or higher plan.
  • Meeting must be a scheduled meeting. Instant meetings do not have polling features enabled.

Scopes: meeting:read:admin,meeting:read

Rate Limit Label: Light

 

Body PARAM

Key Datatype Required Description 
anonymous
string Whether to query for polls with the **Anonymous** option enabled: * `true` &mdash; Query for polls with the **Anonymous** option enabled. * `false` &mdash; Do not query for polls with the **Anonymous** option enabled.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "polls": [ { "id": "<string>", "status": "ended", "anonymous": false, "poll_type": 2, "questions": [ { "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "name": "<string>", "prompts": [ { "prompt_question": "<string>", "prompt_right_answers": [ "<string>", "<string>" ] }, { "prompt_question": "<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, "type": "rank_order" }, { "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "name": "<string>", "prompts": [ { "prompt_question": "<string>", "prompt_right_answers": [ "<string>", "<string>" ] }, { "prompt_question": "<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, "type": "fill_in_the_blank" } ], "title": "<string>" }, { "id": "<string>", "status": "ended", "anonymous": false, "poll_type": 1, "questions": [ { "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "name": "<string>", "prompts": [ { "prompt_question": "<string>", "prompt_right_answers": [ "<string>", "<string>" ] }, { "prompt_question": "<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, "type": "multiple" }, { "answer_max_character": "<integer>", "answer_min_character": "<integer>", "answer_required": false, "answers": [ "<string>", "<string>" ], "case_sensitive": false, "name": "<string>", "prompts": [ { "prompt_question": "<string>", "prompt_right_answers": [ "<string>", "<string>" ] }, { "prompt_question": "<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, "type": "rank_order" } ], "title": "<string>" } ], "total_records": "<integer>" }



Curl
curl -X GET 'https://api.zoom.us/v2/meetings/:meetingId/polls?anonymous=<boolean>?anonymous=<boolean>' -H 'Accept: application/json'

ENDPOINTS