List recordings API - cannot add missing scopes

I want to get the list of recording in my zoom account using the API using server-to-server auth.

I call https://api.zoom.us/v2/accounts/{accountId}/recordings with the generated bearer token and get 400 -

{
“code”: 4700,
“message”: “Invalid access token, does not contain scopes: [recording:read:master, recording:master, recording:write:master].”
}

In the server-to-server app scopes I only see recording:read:admin, recording:write:admin and recording:master scopes. After adding these scopes I get 401 -
{
“code”: 124,
“message”: “Invalid access token.”
}

How can I add the required scopes?

1 Like