Arguments and options for joining a meeting.

interface JoinOptions {
    customerKey?: string;
    error?: Function;
    meetingNumber: string;
    password?: string;
    recordingToken?: string;
    sdkKey?: string;
    signature: string;
    success?: Function;
    tk?: string;
    userEmail?: string;
    userName: string;
    zak?: string;
}

Properties

customerKey?: string

Param: customerKey

The user's customer key.

error?: Function

Param: error

Join error callback.

meetingNumber: string

Param: meetingNumber

The Zoom Meeting number.

password?: string

Param: password

The meeting password.

recordingToken?: string

Param: recordingToken

Optional token to allow local recording. See Get a meeting's join token for local recording for details.

sdkKey?: string

Param: sdkKey

The Meeting SDK SDK key or client ID.

signature: string

Param: signature

The generated signature to create or join the meeting. See Generate the SDK JWT for details.

success?: Function

Param: success

Join success callback.

tk?: string

Param: tk

Optional 'tk' param to join a webinar with registration.

userEmail?: string

Param: userEmail

The user's email address.

userName: string

Param: userName

The user's name.

zak?: string

Param: zak

Optional 'zak' param to start a meeting or webinar with OAuth.