Format Your New Topic as Follows:
API Endpoint(s) and/or Zoom API Event(s)
Get Meeting Recordings API endpoint
Description
Using a server-to-server OAuth Zoom app with account-level access, I’m attempting to retrieve meeting recording data, specifically a meeting’s transcript, via the Get Meeting Recordings API. However, I receive the following error:
{'code': 4711, 'message': 'Invalid access token, does not contain scopes:[cloud_recording:read:list_recording_files, cloud_recording:read:list_recording_files:admin].}
Unfortunately, these scopes aren’t available to my Zoom app. I’ve selected all the available granular scopes, but none of them match the required scopes for this API endpoint. The scopes available in my Zoom app are:
cloud_recording:read:list_account_recordings:admincloud_recording:read:recording:adminarchiving:read:archive_files:admincloud_recording:read:archive_files:admin
Is there a reason for the mismatch between what’s available for selection in my Zoom app vs what’s required by the API endpoint?
Error?
{'code': 4711, 'message': 'Invalid access token, does not contain scopes:[cloud_recording:read:list_recording_files, cloud_recording:read:list_recording_files:admin].}
How To Reproduce
*1. Enable the above cloud_recording scopes in a server-to-server OAuth Zoom app
*2. Using that Zoom app, call the Get Meeting Recordings API endpoint
*3. The request will fail with the invalid access token error.