The whole hunk
from line 7, old and new numbered
/
lines
from line 7
77
88## List RBAC Role Permissions
99
10**GET** `/v1/organizations/rbac_roles/{role_id}/permissions`
10**GET** `/v1/organizations/rbac_roles/{rbac_role_id}/permissions`
1111
1212List the permissions an RBAC Role grants.
1313
from line 15
1515
1616### Path parameters
1717
18- `role_id: string`
18- `rbac_role_id: string`
1919
2020 ID of the RBAC Role.
2121
from line 158
158158### Example
159159
160160```bash
161curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID/permissions \
161curl https://api.anthropic.com/v1/organizations/rbac_roles/$RBAC_ROLE_ID/permissions \
162162 -H 'anthropic-version: 2023-06-01' \
163163 -H "X-Api-Key: $ANTHROPIC_API_KEY"
164164```