Scheduling Zoom Meetings In Java using Rest API and methods
News from the BLURT Coin Development team on January 29, 2021
Zoom is a popular app for setting up meetings and one good feature is the scheduled meetings. So let read how to set up scheduled meetings from Java Application Using API.
Steps for zoom meeting setup
Signup for Zoom Account with a paid plan.
Go to zoom developers and create a JWT App for your application with your details.
Get and copy Zoom Api Key and Api Secret to your project.
Get user id from your registered Zoom Account.
Now create and add methods below (Create for creation, and get/list for getting new/existing created meetings)
Note: Each Api needs authorization, so we have added a helper method in each to generate JWTToken using key and secret.
Zoom API Methods
Create Meeting method
2. List Meetings Method
3. Get Single Meeting Method
So, we have listed Methods to create and get zoom meetings from Java Application using Rest API.
Note: We have used RestTemplate library for calling apis, but you can use any other similar package like okHttp too keeping the options same.
Bonus
There is no SDK as of now for JAVA, so I have created and added DTO’s (Data Transfer Objects) for handling responses. Check below all.
Zoom Meetings List Response DTO for handling get meetings list API