API Endpoint(s) and/or Zoom API Event(s)
Endpoint:
PATCH {{baseUrl}}/meetings/:meetingId/survey
Description
When I update a survey to point to a third party survey, like so:
{
"third_party_survey": "https://mylink.test",
"show_in_the_browser": **false**
}
When I retreive the information on that survey afterwards using
GET {{baseUrl}}/meetings/:meetingId/survey
the response is
{
"third_party_survey": "https://mylink.test",
"show_in_the_browser": **true**
}
meaning the show_in_the_browser field is not taken into account.