Host unmute participant in meeting sdk

Description
after reading this article, https://support.zoom.us/hc/en-us/articles/203435537-Muting-unmuting-participants-in-a-meeting.
i have set setting in account to allow host to unmute participants when user has give permission. however the problem still persists.

  1. How can i go about allowing the host to have the right to unmute particpants in zoom web sdk?
  2. Could it also be possible to set this in the meeting configs if it is supported? or progammatically unmute them?

Which Web Meeting SDK version?
2.9.7

Meeting SDK Code Snippets

 ZoomMtg.init({
      leaveUrl: meetingConfig.leaveUrl,
      // added to disable zoom sharing and other functions
      showMeetingHeader: false,
      disableInvite: true,
      disableCallOut: true,
      disableRecord: true,
      disableJoinAudio: false,
      audioPanelAlwaysOpen: false,
      showPureSharingContent: false,
      isSupportAV: true,
      isSupportChat: false,
      isSupportQA: false,
      isSupportPolling: false,
      isSupportBreakout: false,
      isSupportCC: false,
      screenShare: false,
      success: function () {
        ZoomMtg.i18n.load(meetingConfig.lang);
        ZoomMtg.i18n.reload(meetingConfig.lang);
        ZoomMtg.join({
          meetingNumber: meetingConfig.meetingNumber,
          userName: meetingConfig.userName,
          signature: signature,
          sdkKey: meetingConfig.sdkKey,
          passWord: meetingConfig.passWord,
          success: function (res) {
            ZoomMtg.getAttendeeslist({});
            ZoomMtg.getCurrentUser({
              success: function (res) {},
            });
          },
          error: function (res) {
            console.error(res);
          },
        });
      },
      error: function (res) {
        console.error(res);
      },
    });

Device (please complete the following information):

  • Chrome Browser

Additional context
the participants are using zoom meeting sdk for windows, where host is on zoom meeting sdk for web.

Hi, @spaceman.developer.

Thank you for posting in the Zoom Developer Forum. To mute participants with Zoom Web Meeting SDK, there are two functions you can leverage : mute and muteAll . Down below I’ve link the function for reference:

mute

muteAll

Feel free to let us know if this help or if you have additional questions.

@donte.zoom i meant to say that the zoom participant on the windows sdk is there a way to grant the host the permission to mute/unmute the participants in the meeting?

@spaceman.developer,

The host should have ability to mute participants. Are you seeing different in your meeting ?

In the meantime, here’s our help documentation on this topic:

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