- List the resources the current token can access
Get authorization server metadata
Issue an access token
Revoke a token
Register an OAuth client (DCR)
List the resources the cu...
Returns the resources this token is actually granted — not everything the user or application could reach. Each entry carries the scopes granted on that resource, so a client knows which location_id to use in a path and which chain-level calls it may make.
A consent may grant several resources at once; each becomes an independent entry that can be revoked on its own. A chain entry does not imply its locations: chain grants and location grants are separate, and a new location added to a chain later is not covered automatically.
Security
OAuth2 or RestrictedKey
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v3/openapi/oauth/accessible-resources
- Preview authorization server - endpoint surface is not live yethttps://api.alteg.io/oauth/accessible-resources
- OAuth2
- RestrictedKey
curl -i -X GET \
https://developer.alteg.io/_mock/en/b2b-v3/openapi/oauth/accessible-resources \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "object": "list", "data": [ { … }, { … }, { … } ] }