MeetingSDK: Allow participants to unmute themselves?

The latest meetings SDK (Reference) doesn’t list the “Allow participants to unmute themselves” method/property seen in the zoom client. Is there a workaround?

@chinmayharitas Hi here is a demonstration regarding disabling and enabling mute/unmute permission.

Please make sure the participant has host privileges.

Any query still please share here. Thanks

Thanks for the great tutorial. Is there also a feature to spotlight from javascript than through the UI? The method isn’t listed.

@chinmayharitas Yes here is the api

:point_down:

 ZoomMtg.muteAll({
            muteAll:true,
           success: function(e){
                console.log('-- muteAll result -> ',e);
            }
        });

        ZoomMtg.mute({
            userId:12324343,
            success:function(e)
            {
                console.log('-- mute participant result -> ',e);
            }
        })

If still any query please ask. Thanks

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