Hi,
I am trying to prevent participants from unmuting themselves in a Zoom meeting using the API/WebSDK. I found the option allow_host_control_participant_mute_state
and want to set it to true
, but I am unable to change this setting for my existing or newly created meetings.
Meeting Details:
- Type: 8 (Recurring Meeting)
- Recurrence Settings:
json
{
"settings": {
"host_email": "me@gmail.com",
"use_pmi": true,
"host_video": true,
"allow_host_control_participant_mute_state": true,
"request_permission_to_unmute_participants": true,
"continuous_meeting_chat": {
"enable": true
}
},
"recurrence": {
"type": 1,
"repeat_interval": 1,
"end_times": 0
}
}
Issues:
- I am unable to set
allow_host_control_participant_mute_state: true
when creating or updating the meeting. - Is this option supported in the WebSDK or API?
- If not, is there any alternative way to prevent participants from unmuting themselves using the WebSDK/API/Account Settings?
Any guidance or workarounds would be greatly appreciated. Thanks!