Invalid access token, does not contain scopes:[phone:read:list_call_logs:master]

Hi everyone
i am trying to post request to this end point
https://api.zoom.us/v2/accounts/${zoomAccountId}/phone/call_history
(I replace the zoomAccountId with the actual string.)
and i am getting this error
{
“code”: 104,
“message”: “Invalid access token, does not contain scopes:[phone:read:list_call_logs:master].”
}

i am using server to server authentication to get the token and i added already scope list_call_logs master to the server to server app on my marketplace.
(these are the list of scopes that I have in my access token. user:read:list_users:admin user:read:list_users:master meeting:read:list_meetings:admin meeting:read:list_meetings:master phone:read:list_call_logs:admin phone:read:list_call_logs:master)
I have the admin role.
I can successfully use https://api.zoom.us/v2/users to list all subaccounts, so I don’t think it is an issue with my code, or api tokens.

What can be the problem?