List Meeting Summaries API - Issues with scope

I’m attempting to use the following endpoint:
GET /accounts/{accountId}/meetings/meeting_summaries

When making my request, I receive this error:

{
“code”: 4711,
“message”: “Invalid access token, does not contain scopes:[meeting_summary:master].”
}

I’m using server-to-server oauth.

The token I generated has these scopes:

user:write:admin user:read:admin phone_voicemail:read:admin report:master report:read:admin account:master account:read:admin billing:master meeting_summary:read:admin account:write:admin phone_e911:read:admin phone:write:admin user:master phone_voicemail:write:admin meeting:master phone:read:admin meeting:read:admin phone_call_control:read:admin meeting_summary:master phone_call_log:write:admin phone_call_control:write:admin phone_call_log:read:admin meeting:write:admin

What am I missing?

I think I figured it out. It didn’t like the master account part of it: /accounts/{accountId}

Getting rid of that provided the data I need.