The best way to integrate Zoom with existing website[elearning]

How to integrate elearning solutions using Zoom

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?

I’d be grateful for any help

1 Like

Hey @emilpausz, thanks for posting and using Zoom!

Here is the flow (you can use the Zoom App instead of the SDK if you don’t want to integrate the actual meetings inside your application):

  1. Create a JWT App (for Web SDK) and SDK App (For Mobile / Desktop SDKs) on a Pro or higher Zoom account.

  2. Use your JWT App to make a JWT Token to mange creating free basic accounts for all your instructors so they can create / host the classes.

  3. 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.

The only catch is you have 2 options when creating Zoom accounts dynamically for the instructors:

  1. 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)

  2. 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.

Let me know if that helps!

Thanks,
Tommy

1 Like