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