Server to Server OAuth migration: api call to get bearer token

Hi,

We currently have JWT app that needs to be migrated to Server to Server OAuth.

The app assigns certain team members who have a Zoom accounts as Assistants to other staff within our Enterprise Zoom Account.

Our app assigns the assistants programmatically using Zoom API’s and C#

We have created a Server to Server OAuth app.

I assume we can call the end point https://zoom.us/oauth/token?grant_type=account_credentials&account_id={accountId} to get a token to connect and do the work.

can we please see a C# example for getting the bearer token using https://zoom.us/oauth/token

Thanks,
Ray

I’ve previously shared a C# implementation for a different organization’s OAuth API; you will need to adjust it to fit Zoom’s URLs (such as changing the grant_type value).

2 Likes

Thank you, this is great!!

Ray