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 Groups changed

api/beta/organization/rbac_groups

Nearest release: v2.1.272, published 5 hours before 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+0added
Lines−8removed
From line 84 where the diff opens
First seen 10 Sep 2026 this site's first read of the page
Recorded edits3to this page, all time

The whole hunk

from line 84, old and new numbered
/
lines
from line 84
8484```bash
8585curl https://api.anthropic.com/v1/organizations/rbac_groups \
8686 -H 'anthropic-version: 2023-06-01' \
87 -H 'anthropic-beta: ce-user-management-2026-07-13' \
8887 -H "X-Api-Key: $ANTHROPIC_API_KEY"
8988```
9089 
from line 172
173172```bash
174173curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
175174 -H 'anthropic-version: 2023-06-01' \
176 -H 'anthropic-beta: ce-user-management-2026-07-13' \
177175 -H "X-Api-Key: $ANTHROPIC_API_KEY"
178176```
179177 
from line 257
259257curl https://api.anthropic.com/v1/organizations/rbac_groups \
260258 -H 'Content-Type: application/json' \
261259 -H 'anthropic-version: 2023-06-01' \
262 -H 'anthropic-beta: ce-user-management-2026-07-13' \
263260 -H "X-Api-Key: $ANTHROPIC_API_KEY" \
264261 -d '{
265262 "name": "Engineering"
from line 351
354351curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
355352 -H 'Content-Type: application/json' \
356353 -H 'anthropic-version: 2023-06-01' \
357 -H 'anthropic-beta: ce-user-management-2026-07-13' \
358354 -H "X-Api-Key: $ANTHROPIC_API_KEY" \
359355 -d '{
360356 "name": "Engineering"
from line 409
413409curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
414410 -X DELETE \
415411 -H 'anthropic-version: 2023-06-01' \
416 -H 'anthropic-beta: ce-user-management-2026-07-13' \
417412 -H "X-Api-Key: $ANTHROPIC_API_KEY"
418413```
419414 
from line 556
561556```bash
562557curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
563558 -H 'anthropic-version: 2023-06-01' \
564 -H 'anthropic-beta: ce-user-management-2026-07-13' \
565559 -H "X-Api-Key: $ANTHROPIC_API_KEY"
566560```
567561 
from line 633
639633curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
640634 -H 'Content-Type: application/json' \
641635 -H 'anthropic-version: 2023-06-01' \
642 -H 'anthropic-beta: ce-user-management-2026-07-13' \
643636 -H "X-Api-Key: $ANTHROPIC_API_KEY" \
644637 -d '{
645638 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
from line 693
700693curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members/$USER_ID \
701694 -X DELETE \
702695 -H 'anthropic-version: 2023-06-01' \
703 -H 'anthropic-beta: ce-user-management-2026-07-13' \
704696 -H "X-Api-Key: $ANTHROPIC_API_KEY"
705697```
706698