Zoom Meeting API: Recordings of Me Not Displaying

Hi All,

I am facing an issue when calling the zoom meeting recording API from the master account with the following URL with the access token.
https://api.zoom.us/v2/users/me/recordings

earlier it shows and display all the recordings via using the above mention link. but not it displaying the following output.
{
“from”: “2023-02-15”,
“to”: “2023-02-16”,
“page_count”: 0,
“page_size”: 0,
“total_records”: 0,
“next_page_token”: “”,
“meetings”:
}

how ever If I call the user id instead of me it shows the user recordings.

please suggest how could I get the recordings via me in URL.

thanks

@professionalsna Hope you will be fine.

Please verify that you have a valid access token with valid scopes in it when using /me. Thanks

I have generated the token with all the related scopes:

user:write:admin meeting_token:read:admin:local_recording user:read:admin meeting:read:admin:sip_dialing recording:write:admin meeting_token:read:admin:live_streaming account:master recording:master account:read:admin account:write:admin user:master meeting:master meeting_token:read:admin:local_archiving meeting:read:admin recording:read:admin meeting:write:admin

@professionalsna Please try to use meeting uuid and make sure that you have double-encoded that.

Here is the session → Zoom Cloud Recordings - (REST API)

I need to access all the recordings from master accounts. as I state earlier it worked.

If you have OAuth App then you need to use /me to get authorized user recordings or get all users and iterate one by one & request recordings and append to list object if you have JWT/Admin-Level App.

You need to follow as I mentioned :point_up_2: above to achieve that.

I got it worked I am calling the wrong API URL

it should be “https://api.zoom.us/v2/accounts/me/recordings” for getting all the recordings from the master account.

instead of “https://api.zoom.us/v2/users/me/recordings” it will just show user recordings.

Thanks @freelancer.nak for your time.

1 Like