How to create user account silently?

Description
I am building a social app, one feature is users can create video meeting and chat with each other. when a user sign-up my app, I want to generate a zoom account for that user. So she can use the app to create a zoom meeting so other users of my app can join.

I don’t want to ask user to link their current zoom account or have to verify email with zoom.

What’s the best way to do so?
Thanks

Error
The full error message or issue you are running into.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
Knowing the endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.

Which Endpoint/s?
Knowing the API endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.

How To Reproduce (If applicable)
Steps to reproduce the behavior:

  1. Request URL / Headers (without credentials) / Body
  2. See error

Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.

Additional context
Add any other context about the problem here.

You probably don’t want to do this at all, because you’ll have to pay the bill for these users. If that’s okay, then you probably want to use your custom domain and then either use autoCreate (with Managed Domain enabled) or ssoCreate (with SSO login configured). https://support.zoom.us/hc/en-us/articles/204758419

Thanks for the answer. Assuming billing is ok. so I need a server-side account app to autocreate and manage users.

On the mobile side, do I need to create a new jwt-app for mobile or should I use the same account app in the mobile side?

JWT credentials have global access, so I wouldn’t push that to mobile. If you need the mobile app to make changes to the Zoom meetings, then you either want to use OAuth (and individuals will be asked to grant specific capabilities) or use a server-side proxy (but then you need to hand authentication).

Hey @yangzju,

I would suggest to build an OAuth app, and use the OAuth flow to have users connect their existing Zoom accounts to your app. Then you can create meetings and other actions on their behalf.

Thanks for your suggestions as well @Jonathan_Champ! :slight_smile:

Thanks,
Tommy

I agree with @tommy - that will be a much better experience for your users who already have Zoom accounts.

My original response was working from this requirement:

1 Like

Thanks again for your contributions to the Zoom Developer Community! :slight_smile:

-Tommy