What's the name of "Request permission to unmute participants" field by API?

I just discovered the new flag “Request permission to unmute participants” on the meetings.

I wondered how can i set this by API ?

I read the docs at https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate
but i can find nothing related.

Thanks for any help !

Ok found it !

i post the code for the other users:

POST https://api.zoom.us/v2/users/{uid}/meetings

{
   "topic":"My Meeting",
   "type":2,
   "start_time":"2021-03-21T12:00:00Z",
   "duration":60,
   "timezone":"Europe/London",
   "settings":{
           "request_permission_to_unmute_participants":true
   }
}

Glad you found it, @f.barone, and thanks for sharing! :slight_smile:

Best,
Will

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