403 Forbidden on Zoom REST API v2

Description
i want to call zoom api from my web project. i use jwt. this is my code :

    var client = new RestClient("https://api.zoom.us/v2/users/me/meetings?page_size=30&type=live");
    var request = new RestRequest(Method.GET);
    request.AddHeader("authorization", "Bearer ******");
    IRestResponse response = client.Execute(request);

error : 403 Forbidden.

how can fix that ? i use free version of zoom api. and i am beginer in zoom

Hey @integration_zoom_own,

I’m happy to help out. Are you able to get this request working in Postman with that JWT token? If not, I’m guessing your JWT token is incorrect. You can generate a JWT token to test with from the Marketplace App.

Let me know if that helps.

Thanks,
Max

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.