How to use RestAPI to add panelist to my webinar?

Hey @huetherb, thanks for reaching out and using Zoom!

For your use case, I would suggest using the JWT App Type as it does not require OAuth. By creating a JWT App Type, you will get a client id and client secret which you can use to create a JWT token to call the Zoom API’s.

You can also generate a JWT token on the App Dashboard to easily test it out,

Then in your request header,

{
   "Authorization": "Bearer { JWT TOKEN HERE }"
}

Let me know if this helps!

Thanks,
Tommy