cancel
Showing results for 
Search instead for 
Did you mean: 
The Zoom Community will be placed in read-only mode January 9th, 2026 through January 22nd, 2026 to deliver you a new and improved community experience!

The community will still be accessible, however, the creation of any new discussions or replies will be temporarily unavailable. We appreciate your patience during this time.

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