The whole hunk
from line 76, old and new numbered
/
lines
from line 76
7676```bash
7777curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
7878 -H 'anthropic-version: 2023-06-01' \
79 -H 'anthropic-beta: ce-user-management-2026-07-13' \
8079 -H "X-Api-Key: $ANTHROPIC_API_KEY"
8180```
8281
from line 153
154153curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
155154 -H 'Content-Type: application/json' \
156155 -H 'anthropic-version: 2023-06-01' \
157 -H 'anthropic-beta: ce-user-management-2026-07-13' \
158156 -H "X-Api-Key: $ANTHROPIC_API_KEY" \
159157 -d '{
160158 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
from line 213
215213curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members/$USER_ID \
216214 -X DELETE \
217215 -H 'anthropic-version: 2023-06-01' \
218 -H 'anthropic-beta: ce-user-management-2026-07-13' \
219216 -H "X-Api-Key: $ANTHROPIC_API_KEY"
220217```
221218