Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

RBAC Roles changed

api/beta/organization/rbac_roles

Nearest release: v2.1.280, published 20 hours after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+6added
Lines−6removed
From line 96 where the diff opens
First seen 10 Sep 2026 this site's first read of the page
Recorded edits4to this page, all time

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```