cancel
Showing results for 
Search instead for 
Did you mean: 
Effective January 9th, 2026 through January 22nd, 2026: The Zoom Community is currently in read-only mode with login disabled, to deliver you a new and improved community experience!

The site is still accessible to view, however, the ability to login, create content, or access your community account is temporarily unavailable. We appreciate your patience during this time. If seeking support, please browse existing community content or ask our Zoom Virtual Agent.

Not able to mute/unmute zoom meeting in react-native-zoom-us

kashyapG
Newcomer
Newcomer

I am integrating zoom into react native application. Below are versions used
react native- 0.74.3, react-native-zoom-us- 9.0.0

Not able to mute and unmute audio when using custom component ZoomUsVideoVideo.
I am able to initilize the zoom SDK.
I am able to join meeting successfully.
But when I tried to mute and unmute audio, I get an error ie: "ERR [Error: Mute my audio error, status: SDKERR_SERVICE_FAILED]"

const initializeResult = await ZoomUs.initialize(
{ jwtToken: sdkJwtToken },
{
enableCustomizedMeetingUI,
disableShowVideoPreviewWhenJoinMeeting: true,
disableMinimizeMeeting: false,
disableClearWebKitCache: false
},
);

const joinMeetingResult = await ZoomUs.joinMeeting({
autoConnectAudio: true,
userName: Test,
meetingNumber: meetingNumber,
password: password,
noMeetingErrorMessage: true,
zoomAccessToken: zak,
noAudio: false,
noVideo: false,
}).then(() => {
Alert.alert("joined meeting........")
});

const muteUnmuteResult = await ZoomUs.muteMyAudio(true/false);

 

0 REPLIES 0