Logo
Zoom Public API Documentation

List past webinar poll results

GET {{baseUrl}}/past_webinars/:webinarId/polls

The polling feature for webinar lets you create single-choice or multiple-choice polling questions for your webinars. This API endpoint retrieves the results for webinar polls of a specific webinar.

Prerequisites:

Scopes: webinar:read:admin,webinar:read

Rate Limit Label: MEDIUM

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "id": "<long>", "questions": [ { "email": "<string>", "name": "<string>", "question_details": [ { "answer": "<string>", "date_time": "<dateTime>", "polling_id": "<string>", "question": "<string>" }, { "answer": "<string>", "date_time": "<dateTime>", "polling_id": "<string>", "question": "<string>" } ] }, { "email": "<string>", "name": "<string>", "question_details": [ { "answer": "<string>", "date_time": "<dateTime>", "polling_id": "<string>", "question": "<string>" }, { "answer": "<string>", "date_time": "<dateTime>", "polling_id": "<string>", "question": "<string>" } ] } ], "start_time": "<dateTime>", "uuid": "<string>" }



Curl
curl -X GET 'https://api.zoom.us/v2/past_webinars/:webinarId/polls' -H 'Accept: application/json'

ENDPOINTS