I am using open API - /meetings/{meetingId}/meeting_summary endpoints
I am getting the below response
({“code”:4711,“message”:“Invalid access token, does not contain scopes:[meeting_summary:read, meeting_summary:read:admin].”})
I already added meeting_summary:read:admin to the oauth app. But I don’t see meeting_summary:read in the options.
It looks like your access token is missing the required scope meeting_summary:read. Even though you’ve added meeting_summary:read:admin, some APIs require both scopes explicitly. Try the following steps:
Check OAuth App Scopes – Ensure meeting_summary:read is added in your app settings.
Regenerate Access Token – After updating scopes, generate a new access token.
Verify Token Scopes – Use the /oauth/tokeninfo endpoint to confirm your token contains the required scopes.
Check API Documentation – Review the latest API documentation to confirm scope requirements.