Is there an example (c# or http) how to create a meeting?

I neet to write a service that create meetings. I believe it must be as easy as sending two requests to the Web API (using HttpClient in C#) but wasn’t able to find any (full) examples.

How to request a token using APIKey and APISecret? Or should I just use JWTToken from https://marketplace.zoom.us/develop/apps/si88jLeySDaphFZMes8Vow/credentials ?

I don’t want to download and copy dll’s manually (to avoid version problems in the future) but using a NuGet package is OK.

Hey @shamil_sayfutdinov,

I suggest using a JWT Token, and then calling the Create Meeting API.

You can see code examples at the bottom of each endpoint page:

Thanks,
Tommy

This code doesn’t work:
CS0246 The type or namespace name ‘RestClient’ could not be found

Also it was not clear how to generate JWT Token.

Your documentation is good but it assumes that a reader has some specific (not common) knowledge.

Hey @shamil_sayfutdinov,

Here are some docs on calling an API with C#: Call a Web API From a .NET Client (C#) - ASP.NET 4.x | Microsoft Learn

Thanks for your feedback on our docs, we will use it to improve them!

There are C# libraries that can help you generate JWT Tokens here: jwt.io

Thanks,
Tommy