A Meeting Poll is created according to API documentation
{ :title=>“test poll”, :status=>“notstart”, :questions=>[{:name=>“test question 1”, :type=>“single”, :answers=>[“yes”, “no”, “maybe”]}], :zoom_meeting_id=>0123456789}
no error is generated when created through API, and the poll can be retrieved/edited via an API call with no error as well
However, once the poll is created the user ‘meeting details’ screen on the Zoom Website will no longer open and gives “Unable to display this page Zoom is temporarily unable to display this page.” Also, polling icon disappears from the meeting user interface, so the poll cannot be accessed
Delete the poll via the API, and the ‘meeting details’ screen is accessible, and the polling icon returns to the user interface.
If the poll is created via the Zoom meeting details screen…there is no issue…however if that poll is edited via the API…same issue as above then occurs…perhaps the API documentation is missing a required property? I do notice a ‘anonymous’ check box when Poll is created via meeting detail page, however the field/property does not present itself via the API…
we came across the same issue. As it turned out, we were sending empty answers in our create request and that caused the problem. For example:
"answers": [
"Yes",
"",
"No"
]
When you’d get the poll via API everything looked correct and no empty answers were there. Once we removed them from create request everything was working as expected.