Skip to main content
GET
http://localhost:3000
/
scope-overrides
/
role-permissions
/
{childScopeId}
curl -X GET 'https://api.example.com/scope-overrides/role-permissions/scope_team' \
  -H 'Authorization: Bearer YOUR_TOKEN'
[
  {
    "id": "override_789",
    "childScopeId": "scope_team",
    "roleId": "role_editor",
    "permissionId": "perm_delete",
    "state": "disabled"
  }
]

Path Parameters

childScopeId
string
required
The child scope ID to get role-permission overrides for

Response

Returns an array of role-permission override objects.
overrides
array
curl -X GET 'https://api.example.com/scope-overrides/role-permissions/scope_team' \
  -H 'Authorization: Bearer YOUR_TOKEN'
[
  {
    "id": "override_789",
    "childScopeId": "scope_team",
    "roleId": "role_editor",
    "permissionId": "perm_delete",
    "state": "disabled"
  }
]