| name | zoom-meeting-sdk-web-client-view |
| description | Zoom Meeting SDK Web - Client View. Full-page Zoom meeting experience with the familiar Zoom interface.
Uses ZoomMtg global singleton with callback-based API. Ideal for quick integration with minimal
customization. Provides the same UI as Zoom Web Client.
|
Zoom Meeting SDK Web - Client View
Full-page Zoom meeting experience embedded in your web application. Client View provides the familiar Zoom interface with minimal customization needed.
Overview
Client View uses the ZoomMtg global singleton to render a full-page meeting experience identical to the Zoom Web Client.
| Aspect | Details |
|---|
| API Object | ZoomMtg (global singleton) |
| API Style | Callback-based |
| UI | Full-page takeover |
| Password param | passWord (capital W) |
| Events | inMeetingServiceListener() |
| Best For | Quick integration, standard Zoom UI |
Installation
NPM
npm install @zoom/meetingsdk --save
import { ZoomMtg } from '@zoom/meetingsdk';
CDN
<script src="https://source.zoom.us/{VERSION}/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/{VERSION}/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/{VERSION}/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/{VERSION}/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/{VERSION}/lib/vendor/lodash.min.js"></script>
<script src="https://source.zoom.us/zoom-meeting-{VERSION}.min.js"></script>
Complete Initialization Flow
console.log('Requirements:', ZoomMtg.checkSystemRequirements());
ZoomMtg.preLoadWasm();
ZoomMtg.prepareWebSDK();
ZoomMtg.i18n.load('en-US');
ZoomMtg.i18n.onLoad(() => {
ZoomMtg.init({
leaveUrl: '/meeting-ended',
patchJsMedia: true,
disableCORP: !window.crossOriginIsolated,
success: () => {
console.log('SDK initialized');
const joinPayload = {
signature: signature,
meetingNumber: meetingNumber,
userName: userName,
passWord: passWord,
success: (res) => {
console.log('Joined meeting');
ZoomMtg.getAttendeeslist({});
ZoomMtg.getCurrentUser({
success: (res) => console.log('Current user:', res.result.currentUser)
});
},
error: (err) => console.error('Join failed:', err)
};
if (userEmail) joinPayload.userEmail = userEmail;
if (tk) joinPayload.tk = tk;
if (zak) joinPayload.zak = zak;
ZoomMtg.join(joinPayload);
},
error: (err) => console.error('Init failed:', err)
});
});
ZoomMtg.init() - All Options
Required
| Parameter | Type | Description |
|---|
leaveUrl | string | URL to redirect after leaving meeting |
UI Customization
| Parameter | Type | Default | Description |
|---|
showMeetingHeader | boolean | true | Show meeting number and topic |
disableInvite | boolean | false | Hide invite button |
disableCallOut | boolean | false | Hide call out option |
disableRecord | boolean | false | Hide record button |
disableJoinAudio | boolean | false | Hide join audio option |
disablePreview | boolean | false | Skip audio/video preview |
audioPanelAlwaysOpen | boolean | false | Keep audio panel open |
showPureSharingContent | boolean | false | Prevent overlays on shared content |
videoHeader | boolean | true | Show video tile header |
isLockBottom | boolean | true | Show/hide footer |
videoDrag | boolean | true | Enable drag video tiles |
sharingMode | string | 'both' | 'both' or 'fit' |
screenShare | boolean | true | Enable browser URL sharing |
hideShareAudioOption | boolean | false | Hide "Share tab audio" checkbox |
disablePictureInPicture | boolean | false | Disable PiP mode |
disableZoomLogo | boolean | false | Remove Zoom logo (deprecated) |
defaultView | string | 'speaker' | 'gallery', 'speaker', 'multiSpeaker' |
Feature Toggles
| Parameter | Type | Default | Description |
|---|
isSupportAV | boolean | true | Enable audio/video |
isSupportChat | boolean | true | Enable in-meeting chat |
isSupportQA | boolean | true | Enable webinar Q&A |
isSupportCC | boolean | true | Enable closed captions |
isSupportPolling | boolean | true | Enable polling |
isSupportBreakout | boolean | true | Enable breakout rooms |
isSupportNonverbal | boolean | true | Enable nonverbal feedback |
isSupportSimulive | boolean | false | Enable Simulive |
disableVoIP | boolean | false | Disable VoIP |
disableReport | boolean | false | Disable report feature |
Video Quality
| Parameter | Type | Default | Description |
|---|
enableHD | boolean | true (≥2.8.0) | Enable 720p video |
enableFullHD | boolean | false | Enable 1080p for webinar attendees |
Advanced
| Parameter | Type | Default | Description |
|---|
debug | boolean | false | Enable debug logging |
patchJsMedia | boolean | false | Auto-apply media fixes |
disableCORP | boolean | false | Disable web isolation |
helper | string | '' | Path to helper.html |
externalLinkPage | string | - | Page for external links |
webEndpoint | string | - | For ZFG environments |
leaveOnPageUnload | boolean | false | Auto cleanup on page close |
isShowJoiningErrorDialog | boolean | true | Show error dialog on join failure |
meetingInfo | Array<string> | [...] | Meeting info to display |
inviteUrlFormat | string | '' | Custom invite URL format |
loginWindow | object | {width: 400, height: 380} | Login popup size |
Callbacks
| Parameter | Type | Description |
|---|
success | Function | Called on successful init |
error | Function | Called on init failure |
ZoomMtg.join() - All Options
Required
| Parameter | Type | Description |
|---|
signature | string | SDK JWT from backend (v5.0+: must include appKey prefix) |
meetingNumber | string | number | Meeting or webinar number |
userName | string | Display name |
passWord | string | Meeting password (capital W!) |
Authentication
| Parameter | Type | When Required | Description |
|---|
zak | string | Starting as host | Host's Zoom Access Key |
tk | string | Registration required | Registrant token |
userEmail | string | Webinars | User email |
obfToken | string | March 2026+ | App Privilege Token |
Optional
| Parameter | Type | Description |
|---|
customerKey | string | Custom ID (max 36 chars) |
recordingToken | string | Local recording permission |
Callbacks
| Parameter | Type | Description |
|---|
success | Function | Called on successful join |
error | Function | Called on join failure |
Event Listeners
User Events
ZoomMtg.inMeetingServiceListener('onUserJoin', (data) => {
console.log('User joined:', data);
});
ZoomMtg.inMeetingServiceListener('onUserLeave', (data) => {
console.log('User left:', data);
});
ZoomMtg.inMeetingServiceListener('onUserUpdate', (data) => {
console.log('User updated:', data);
});
ZoomMtg.inMeetingServiceListener('onUserIsInWaitingRoom', (data) => {
console.log('User in waiting room:', data);
});
Meeting Status
ZoomMtg.inMeetingServiceListener('onMeetingStatus', (data) => {
console.log('Status:', data.status);
});
Audio/Video Events
ZoomMtg.inMeetingServiceListener('onActiveSpeaker', (data) => {
console.log('Active speaker:', data);
});
ZoomMtg.inMeetingServiceListener('onNetworkQualityChange', (data) => {
console.log('Network quality:', data);
});
ZoomMtg.inMeetingServiceListener('onAudioQos', (data) => {
console.log('Audio QoS:', data);
});
ZoomMtg.inMeetingServiceListener('onVideoQos', (data) => {
console.log('Video QoS:', data);
});
Chat & Communication
ZoomMtg.inMeetingServiceListener('onReceiveChatMsg', (data) => {
console.log('Chat message:', data);
});
ZoomMtg.inMeetingServiceListener('onReceiveTranscriptionMsg', (data) => {
console.log('Transcription:', data);
});
ZoomMtg.inMeetingServiceListener('onReceiveTranslateMsg', (data) => {
console.log('Translation:', data);
});
Recording & Sharing
ZoomMtg.inMeetingServiceListener('onRecordingChange', (data) => {
console.log('Recording status:', data);
});
ZoomMtg.inMeetingServiceListener('onShareContentChange', (data) => {
console.log('Share content:', data);
});
ZoomMtg.inMeetingServiceListener('receiveSharingChannelReady', (data) => {
console.log('Sharing channel ready:', data);
});
Breakout Rooms
ZoomMtg.inMeetingServiceListener('onRoomStatusChange', (data) => {
console.log('Breakout room status:', data);
});
Other Events
ZoomMtg.inMeetingServiceListener('onJoinSpeed', (data) => {
console.log('Join metrics:', data);
});
ZoomMtg.inMeetingServiceListener('onVbStatusChange', (data) => {
console.log('Virtual background status:', data);
});
ZoomMtg.inMeetingServiceListener('onFocusModeStatusChange', (data) => {
console.log('Focus mode:', data);
});
ZoomMtg.inMeetingServiceListener('onPictureInPicture', (data) => {
console.log('PiP status:', data);
});
ZoomMtg.inMeetingServiceListener('onClaimStatus', (data) => {
console.log('Host claim status:', data);
});
Common Methods
Meeting Info
ZoomMtg.getCurrentUser({
success: (res) => console.log(res.result.currentUser)
});
ZoomMtg.getAttendeeslist({});
ZoomMtg.getCurrentMeetingInfo({
success: (res) => console.log(res)
});
ZoomMtg.getWebSDKVersion({
success: (version) => console.log(version)
});
Audio/Video Control
ZoomMtg.mute({ userId, mute: true });
ZoomMtg.muteAll({ muteAll: true });
ZoomMtg.stopIncomingAudio({ stop: true });
ZoomMtg.mirrorVideo({ mirror: true });
Chat
ZoomMtg.sendChat({
message: 'Hello!',
userId: 0
});
Meeting Control
ZoomMtg.leaveMeeting({});
ZoomMtg.endMeeting({});
ZoomMtg.lockMeeting({ lock: true });
Host Controls
ZoomMtg.makeHost({ userId });
ZoomMtg.makeCoHost({ userId });
ZoomMtg.withdrawCoHost({ userId });
ZoomMtg.expel({ userId });
ZoomMtg.putOnHold({ userId, bHold: true });
ZoomMtg.claimHostWithHostKey({ hostKey: '123456' });
ZoomMtg.reclaimHost({});
ZoomMtg.admitAll({});
Raise Hand
ZoomMtg.raiseHand({ userId });
ZoomMtg.lowerHand({ oderId });
ZoomMtg.lowerAllHands({});
Spotlight & Pin
ZoomMtg.operateSpotlight({ oderId, action: 'add' });
ZoomMtg.operatePin({ oderId, action: 'add' });
ZoomMtg.allowMultiPin({ allow: true });
Screen Share
ZoomMtg.startScreenShare({});
ZoomMtg.shareSource({ source });
Recording
ZoomMtg.record({ record: true });
ZoomMtg.showRecordFunction({ show: true });
Breakout Rooms
ZoomMtg.createBreakoutRoom({
rooms: [{ name: 'Room 1' }, { name: 'Room 2' }]
});
ZoomMtg.openBreakoutRooms({});
ZoomMtg.closeBreakoutRooms({});
ZoomMtg.joinBreakoutRoom({ roomId });
ZoomMtg.leaveBreakoutRoom({});
ZoomMtg.moveUserToBreakoutRoom({ oderId, roomId });
ZoomMtg.getBreakoutRoomStatus({
success: (res) => console.log(res)
});
Virtual Background
ZoomMtg.isSupportVirtualBackground({
success: (data) => console.log(data.result.isSupport)
});
ZoomMtg.setVirtualBackground({ imageUrl: '...' });
ZoomMtg.getVirtualBackgroundStatus({
success: (data) => console.log(data)
});
ZoomMtg.lockVirtualBackground({ lock: true });
UI Control
ZoomMtg.showMeetingHeader({ show: true });
ZoomMtg.showInviteFunction({ show: true });
ZoomMtg.showJoinAudioFunction({ show: true });
ZoomMtg.showCalloutFunction({ show: true });
ZoomMtg.reRender({ lang: 'de-DE' });
Language
ZoomMtg.i18n.load('de-DE');
ZoomMtg.i18n.reload('de-DE');
ZoomMtg.i18n.getCurrentLang();
ZoomMtg.i18n.getAll();
Rate Limits
| Method | Limit |
|---|
join() | 10 seconds |
callOut() | 10 seconds |
mute() | 1 second |
muteAll() | 5 seconds |
DOM Elements
The SDK automatically adds these elements:
#zmmtg-root - Main meeting container
#aria-notify-area - Accessibility announcements
Do NOT manually create or remove these.
SPA (React/Next) Overlay Gotcha
If you "join" but see a blank/black area or your app shell instead of the meeting UI, the Zoom UI can be rendering behind your app layout. Ensure #zmmtg-root occupies the viewport and is above other fixed elements:
#zmmtg-root {
position: fixed !important;
inset: 0 !important;
z-index: 9999 !important;
}
Join Payload Sanitization Gotcha
If ZoomMtg.join() succeeds partially but the screen turns black and console shows errors like Cannot read properties of undefined (reading 'toString'), sanitize optional fields before calling join.
Do not pass optional keys with undefined values (userEmail, tk, zak, etc.). Build a payload and only attach those keys when they are non-empty strings.
Also prefer defaultView: 'speaker' during ZoomMtg.init() unless you have SharedArrayBuffer/gallery-view prerequisites fully configured.
Resources
Operations
- RUNBOOK.md - 5-minute preflight and debugging checklist.