Hi, I need to implement elearning solution for website where lessons for students are organized.
Teacher can have many lesson with one or more students.
How to do this in the most effective way?
Do I need to create new account for every teacher that want host a meeting?
Or many teachers can use one zoom account?(But there is a problem how to schedule meetings for different teachers on the same zoom account)
Could you give me some hints how to handle this problem?
Use the meeting id of the created meeting, and pass it into the Zoom SDK to start / join the class. (Example for Web SDK) or distribute the join_url to your students so they can join the meeting using the Zoom app.
create, creates an actual Zoom user on your Zoom account, the instructor will get a confirmation email they must click on to finish setting up their account. (Free)
custCreate creates a user without having to accept confirmation email, they actually don’t have a login to Zoom, because it is all handled by the API. (Not Free, isv@zoom.us is cc’d in this email if you would like to inquire about pricing. The user itself can still be a free basic user, but the ability to create custCreate users costs money).
You can find sample Zoom SDK apps, like Angular, iOS and more on our GitHub.