Php Zoom API Integration

Hello,
I have a php laravel website , where multiple users registers as yoga teacher, they conduct the yoga classes
I want to allow those yoga teacher to create zoom meeting to there own zoom account from my website and want a zoom join url in response to save at my end in database for further functionality

I had tried with zoom oauth api’s, But I dont want these users to be created in my business zoom account… any of the user can from my website can be allow to create there own zoom meetings.

Please help … any help will be greatly appreciated
Thanks in advance

Hey @eluminous.se47

Thanks for posting on the Zoom Devforum! I am still learning, but I will try my best to help answer your question. :slightly_smiling_face:

Checkout these related threads that may have the answer you are looking for:

If these threads did not help, please let us know by replying back here and someone from the Developer Relations team will get back to you shortly.

Thanks,
DeveloperBot

I want to create multiple zoom meeting for multiple users on there own zoom account … i dont want to create those customer in my zoom account

The flow I followed :

  1. I created the Oauth app
  2. Copy the credential
  3. curl Request for the authorisation
https://zoom.us/oauth/authorize?response_type=code&client_id=CLIENT_ID&redirect_uri=https://yourapp.com
  1. Then curl request for the access token
https://zoom.us/oauth/token?grant_type=authorization_code&code=MY_CODE&redirect_uri=https://yourapp.com
  1. Then try to craete a meeting
    https://api.zoom.us/v2/users/me/meetings

But this is creating meeting in my zoom account …
I want to create the meeting in the users account

Yes there is way
https://api.zoom.us/v2/users/{user_id/email}/meetings

to create the meeting in there account … but is there a way that i will not not to create the users in my zoom account … any user can authorize my app and simple meeting will be created at there zoom account?

Hey @eluminous.se47,

Once the external user installs your app, you will be able to get their access token, and call the Create Meeting API. The me context refers to whose access token is being used.

Let me know if that helps! :slight_smile:

Thanks,
Tommy

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