Creating meeting for a user - feasibility question

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.

  1. Obtain access token using user-authenticated flow
  2. Create meeting using POST /users/{userId}/meetings
  3. 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

@rangaOM this seems about right

Maybe just for point 2, you will be using POST /users/me/meetings if this is a regular OAuth User Level flow.

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