Get role scopes
Get API resource scopes (permissions) linked with a role.
GET
/api/roles/{id}/scopes
curl \
--request GET 'https://[tenant_id].logto.app/api/roles/{id}/scopes' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"tenantId": "string",
"id": "string",
"resourceId": "string",
"name": "string",
"description": "string",
"createdAt": 42.0,
"resource": {
"tenantId": "string",
"id": "string",
"name": "string",
"indicator": "string",
"isDefault": true,
"accessTokenTtl": 42.0
}
}
]