Hi,
We have an Oauth2 app (OIDC - Web app) and after authenticating with it we are trying to hit this endpoint integrations/api/v1/api-services/ but for some reason we are getting `403 - Forbidden`
```json
{
"errorCode": "E0000006",
"errorSummary": "You do not have permission to perform the requested action",
"errorLink": "E0000006",
"errorId": "oaejnZ2oM4pQPyWy-buEDEBEA",
"errorCauses": []
}
```
- We are requesting the scope `okta.oauthIntegrations.read` during Oauth2 process
- The OAuth2 app has this scope granted
- The user who is logging in during the OAuth flow has "Read-Only Administrator" Role
- Inspecting the token we got from OAuth I see the scope is there (picture)
Are we missing something here, or this scope is not working ?


Adding this here for traceability: https://devforum.okta.com/t/403-forbidden-when-trying-to-access-api-services-endpoint/34533