Can you please tell me the process of creating a meeting using zoom API's

Using Zoom API’s how can i create a meeting

Please refer to https://zoom.github.io/api/#create-a-meeting

Hi, please go through the documentation @ developer.zoom.us and also the samples in git. This forum is intended for specific technical questions and issues. 

When you go to the link zoom.github.io automatically throws out. Why does this work?

Hey @endercokcoskun, thanks for posting and using Zoom!

That link is deprecated, please view our docs here:

https://marketplace.zoom.us/docs/guides

Here is how to create a meeting:

https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate

Thanks,
Tommy

Thanks Tommy,
success with “JWT” getting token.
than I am sending request using c #. but the service refuses the request. When I perform the same operation in “postman”, the operation is successful. I would appreciate your help.
my code :
baseURL = “https://api.zoom.us/v2/users?&status=active&page_size=30&page_number=1”;
WebRequest req = WebRequest.Create(baseURL);
req.Method = “GET”;
req.ContentType = “application/json”;
req.Headers.Add(HttpRequestHeader.Authorization, "bearer " + tk);
WebResponse resp = req.GetResponse();

Hey @endercokcoskun,

Good to hear it is working in Postman! :slight_smile:

Are you receiving any error messages? I am not too familiar with C#.

Thanks,
Tommy

thank you Tommy,
problem solved by adding the following line:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;

1 Like

You are welcome! Happy to hear it is working! :slight_smile:

Thanks,
Tommy