POST {{baseUrl}}/meetings/:meetingId/polls
Polls allow the meeting host to survey attendees. Create a poll for a meeting. Prerequisites: Scopes: Rate Limit Label:
meeting:write:admin
,meeting:write
Light
Body
PARAM
Key | Datatype | Required | Description |
HEADERS
Key | Datatype | Required | Description |
Content-Type
|
string | ||
Accept
|
string |
RESPONSES
status Created
{
"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": "long_answer"
},
{
"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": "rating_scale"
}
],
"title": "<string>"
} |
ENDPOINTS