Unable to create a meeting poll, when the question type is "fill_in_the_blank"

Hi zoom,

When I try to create a meeting poll, and question type is “fill_in_the_blank”, the API allways responds with 400 error.
If the question type are the others, it’s working fine.

{
“code”: 300,
“message”: “Invalid parameter: questions.”
}

Here is the example of request:

curl --request POST
–url https://api.zoom.us/v2/meetings/{meetingId}/polls
–header ‘Authorization: Bearer REMOVED’
–data ‘{
“anonymous”: false,
“poll_type”: 2,
“questions”: [
{
“answer_required”: false,
“name”: “Untitled Question<Answer 1>”,
“type”: “fill_in_the_blank”
}
],
“title”: “Untitled Advanced Poll”
}’

How can i resolve the error?
Thanks

This topic was automatically closed 368 days after the last reply. New replies are no longer allowed.