Which API provides the Poll Results?

Hello

I created a meeting and created poll and it got 5 responses. None of the API returned the Poll results.
API returned only Poll details.

I verified some of the polling APIs provided by Zoom and below are the API responses

List Meeting Polls - https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingpolls

{
“polls”: [
{
“id”: “*******************”,
“questions”: [
{
“answers”: [
“Yes”,
“No”
],
“name”: “Is Covid19 under control in India?”,
“type”: “single”
}
],
“status”: “notstart”,
“title”: “Covid 19”
}
],
“total_records”: 1
}

List Past Meeting’s Poll Results https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/listpastmeetingpolls

{
“id”: ,
“questions”: [
{
“name”: “”,
“question_details”: [
{
“answer”: “No”,
“question”: “Is Covid19 under control in India?”
}
]
},
{
“name”: “”,
“question_details”: [
{
“answer”: “Yes”,
“question”: “Is Covid19 under control in India?”
}
]
}
],
“start_time”: “2020-05-06T06:18:54Z”,
“uuid”: "
****"
}

So which API provides the Polling results like percentage of votes which had Yes or No.

You should be able to get this information from: https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/listpastmeetingpolls

1 Like

Hey @Dora_Reddy,

Like @samly said, the List Past Meetings Poll Results is what you are looking for.

Thanks,
Tommy

Hi @tommy,

Is there a way to get poll results in live? While the webinar/meeting is in progress?

I tried the api that “list past webinar poll results” but when I used the api during the webinar it returned me that the meeting didn’t exist.

Thank you

Hey @usewalter,

Unfortunately getting poll results in real time is not supported. Feel free to add this as a feature request here: #feature-requests

Thanks,
Tommy