Hi Jim,
Thanks for using Zoom SDK. The Zoom login user and SSO login user can start an instant meeting.
API /Non-login User can join a meeting or start a pre-scheduled meeting.
@carson.zoom
In our app the scenario is when user click on button the push notification is sent to the another user and in that second user we are showing one button and on clicking of that button the second user is join meeting using meeting number sent inpush notification.
So, We need to create separate user in zoom when they are signing up in my app ?
If we create a user using
CREATE this then confirmation email is sent to that user and clicking on that link user is redirected to a screen when they need to signup in zoom and from where the user can change password so how can we login in the zoom sdk because user can change password and at time of creating user using
{
“action”: “create”,
“user_info”: {
“email”: "email@domain.com",
“type”: “1”,
“first_name”: “John”,
“last_name”: “Martin”,
“password”: “P@ssword123”
}
}
Hi Jim,
Thanks for the reply and thanks for the info. Based on the link: https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usercreate, the create type and the ssoCreate would be the expected user type. I personally focus more on the SDK side so I am working with our API team to better address your scenario and provide better suggestions for you. I will get back to you as soon as possible.
Regarding your use case, for security concerns, the password creation, account confirmation, and the activation steps cannot be skipped if you are using the create type of user creation. Please note that the password shown in the API call is not available for the create type. It is only available for the autoCreate type of user creation.
So the best option for your scenario would be using the autoCreate or the ssoCreate. To use autoCreate, you need to send a request to verify your domain on the Zoom user portal (zoom.us > Sign In/My Account > Account Management > Account Profile).
Once we have approved your domain verification request, you will be able to create a new user using autoCreate and set the password at use creation. Once the user has successfully created, you will be able to log the user in with SDK.
Hope this helps. Let me know if you have any other questions. Thanks!
@carson.zoom Thanks for the reply.
So in order to start meeting we need to create user using autoCreate or ssoCreate at time of registration in our app.
so my question is the user can register from various domains so we need to add & verify each domain ? under manage domain section ?
@carson.zoom
My question is suppose the user registered in my app has domain @abc.com & some user have domain @xyz.com so do we need to verify all of them because we don’t know about the domain from which user will register. Some of they might be register with gmail, yahoo, hotmail etc…
Thanks for the reply. May I ask do you want your user to just create and use once? Or you would like to create a user with password and use them later as well?
If you just want your user to just create and use once, here is a way of achieving what you want:
Pre-requisites: You will need to have a business plan or API plan.
Once you have successfully scheduled an instant meeting, the response should contain the meeting number and a “start_url”, the url contains “zoom token” & “zoom access token”.(If you open the url in the browser directly, you will be direct to the Zoom client app and start an instant meeting) You can parse these 2 tokens from the url and prepare to use them in the SDK.
@carson.zoom Thanks for the reply.
I would like to inform you that we don’t want to create temporary users.
We need permanent user who can start instant meeting any time. and the registration of the user needs to be done while signup in our app.
Our scenario is when user signup in our app we want to create user in zoom and when user login in our app then later they can start instant meeting with the other user.
NOTE: Each user can start instant meeting any time without scheduling.
But we don’t know how to create user who are able to start instant meeting. Can you help me on this. using which method of creating user can help us to achieve our goal.
Just wanted to follow up, the users who are created using custCreate or SSOCreate will not be temporary users and can start an instant meeting using the create meeting API with the type:1 parameter [1]. They should be able to start the meeting using the start_url that is returned in the response. However, the other user (attendee) who joins the meeting using the join_url will still need at least type in their name before joining the meeting. The only other way where the attendee can join without having to type in anything is to add them as a registrant to the meeting first [2]. From there they will have a specific join_url just for that user to join without logging in or filling in their name.
I would like to inform you that we want to create meeting from app side using Zoom SDK in android and ios devices. The user creation is only done by web side using REST API. Rest of the things will done from App Side. Will your above answer help us to achieve our goal ?
Also i would like to know that the users are created using custCreate or SSOCreate can start an instant meeting using zoom SDK ?
I have tried and i found that the users are created using custCreate are not able to start instant meeting by using Zoom SDK in Android
Yes, the above solution that I provided should help with what you’re looking for. The users should be able to start an instant meeting is they are the host of the meeting.
Can you provide the error message the your received when you tried to start the instant meeting?
I have tried to create instant meeting with the custCreate user but they showing invalid meeting number because i have tried to create instant meeting and i come to know that the user created by using custCreate are only able to start scheduled meetings only check here This meeting id is not valid. please check and try again the solutions that i tried