Hi - I am working on a scheduling web application and want to provide the capability of creating a zoom meeting and subsequently adding the meeting hyperlink to our users. The requirement is for our users to already have an account with zoom. I am imagining the following design will work for this use case.
- Obtain access token using user-authenticated flow
- Create meeting using POST /users/{userId}/meetings
- Embed
join_url
in response to the meeting created within my app
Can you let me know if I am on the right track here and that it would NOT involve my zoom account to be used anywhere in this process.
Thanks