How can I get cloud Recordings video using zoom Api

I found the answer to the problem of accessing Zoom Cloud Recordings using the API Reference. To achieve this, you need to follow these steps:

  1. Create a server-to-server OAuth application on the Zoom Marketplace by logging in with an account that has access to the cloud recording feature. Make sure to enable the necessary scopes for reading recordings.

  2. Implement API calls as follows:

    a. Use a POST request to https://zoom.us/oauth/token to fetch the access token for the account.

    b. Use a GET request to https://api.zoom.us/v2/users/{user_id}/recordings?from=1958-03-15&to=2023-09-20, replacing {user_id} with the email of the host who created the meeting.

For more info