Cannot create meeting with ZoomMtg.init()

Hello,
How can I pass meeting number, meeting start date parameters to the ZoomMtg.init() ?
I have already managed to initialize and join a meeting using Python and Javascript but with the meeting created privously from Zoom portal web interface. How can I create it from ZoomMtg.init() ? Although I see no erros in browser’s debug and “success” is printed the meeting does not show in my personal -> meetings view on web.

ZoomMtg.init({
        debug: true,
        leaveUrl: 'http://127.0.0.1:8000/',
        isSupportAV: false,
        success() {
               console.log("success");
          },
        error(res) {
          reject(res);
        }
 });

Thank you,
Cristian

Hey @LCristian,

To create the meeting programmatically, you can use the Create Meeting API.

Due note, it must be called from a server side application, and not the client side, or else you will get CORs errors.

Thanks,
Tommy

1 Like