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