The whole hunk
from line 96, old and new numbered
/
lines
from line 96
9696
9797## Get RBAC Role
9898
99**GET** `/v1/organizations/rbac_roles/{role_id}`
99**GET** `/v1/organizations/rbac_roles/{rbac_role_id}`
100100
101101Retrieve an RBAC Role by ID.
102102
from line 104
104104
105105### Path parameters
106106
107- `role_id: string`
107- `rbac_role_id: string`
108108
109109 ID of the RBAC Role.
110110
from line 143
143143### Example
144144
145145```bash
146curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID \
146curl https://api.anthropic.com/v1/organizations/rbac_roles/$RBAC_ROLE_ID \
147147 -H 'anthropic-version: 2023-06-01' \
148148 -H "X-Api-Key: $ANTHROPIC_API_KEY"
149149```
from line 198
198198
199199### List RBAC Role Permissions
200200
201**GET** `/v1/organizations/rbac_roles/{role_id}/permissions`
201**GET** `/v1/organizations/rbac_roles/{rbac_role_id}/permissions`
202202
203203List the permissions an RBAC Role grants.
204204
from line 206
206206
207207#### Path parameters
208208
209- `role_id: string`
209- `rbac_role_id: string`
210210
211211 ID of the RBAC Role.
212212
from line 349
349349#### Example
350350
351351```bash
352curl https://api.anthropic.com/v1/organizations/rbac_roles/$ROLE_ID/permissions \
352curl https://api.anthropic.com/v1/organizations/rbac_roles/$RBAC_ROLE_ID/permissions \
353353 -H 'anthropic-version: 2023-06-01' \
354354 -H "X-Api-Key: $ANTHROPIC_API_KEY"
355355```