Mute a participant using zoom app

I did create a zoom app that can mute someone, i did configure the correct scopes and this is the code that im using from the documentation

await window.zoomSdk.toggleParticipantMediaAudio({

            participantUUIDs: [participantUUID],

            audio: false,

          });

the thing is that no matter what, this function does mute everyone, not only 1 participant, even tho i have passed the participantUUID to it, I have double checked the value of the participantUUID and its correct, how can I fix this issue and be able to mute only 1 participant instead of everyone?

1 Like

Have you found the solution?