Hi,
I want to set allow_host_control_participant_mute_state: true
, but it doesn’t work for me:
headers = {
"Authorization": f"Bearer {access_token}",
"Content-Type": "application/json",
}
data = {
...,
"settings": {
...,
"allow_host_control_participant_mute_state": True,
},
}
response = requests.post(
"https://api.zoom.us/v2/users/me/meetings",
headers=headers,
json=data,
)
I have seen this post [1], but I couldn’t find where the setting called “Allow host and co-hosts to fully control the mute state of participants.” is.
Is there any way I can change settings for this? Thanks!