Web SDK- Not able to add ZoomInvitefunctions

Hi
I have downloaded the sample app from

Got it working locally in visual studio, now i want to customize it, i.e. Remove “clear button” and add functionalities from https://zoom.github.io/sample-app-web/ZoomMtg.html#showInviteFunction

How to add those functions and where to add( is it in index.js file or meeting.js file?)

Hey @vivek.muqueshrai,

It is in the success callback of the ZoomMtg.join function. :slight_smile:

ZoomMtg.init({
      leaveUrl: this.leaveUrl,
      isSupportAV: true,
      success: (success) => {
        console.log(success)

        ZoomMtg.join({
          signature: signature,
          meetingNumber: this.meetingNumber,
          userName: this.userName,
          apiKey: this.apiKey,
          userEmail: this.userEmail,
          passWord: this.passWord,
          success: (success) => {
            console.log(success)
            // call showInviteFunction here
          },
          error: (error) => {
            console.log(error)
          }
        })

      },
      error: (error) => {
        console.log(error)
      }
    })

Let me know if that helps!

Thanks,
Tommy

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