Skip to content

List the resources the current token can access

Request

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
curl -i -X GET \
  https://developer.alteg.io/_mock/en/b2b-v3/openapi/oauth/accessible-resources \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Resources accessible with the current token.

Headers
X-Request-Idstring

Request identifier for support and log correlation.

Cache-Controlstring

Grants change independently of the token; do not cache beyond the token lifetime.

Example:"no-store"
Bodyapplication/json
objectstringread-onlyrequired
Value:"list"
dataArray of objects(AccessibleResource)required
Response
{ "object": "list", "data": [ {}, {}, {} ] }