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

Members changed

api/admin/rbac_groups/members

Nearest release: v2.1.261, published 3 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+5added
Lines−5removed
From line 71 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits5to this page, all time

The whole hunk

from line 71, old and new numbered
/
lines
from line 71
7171```bash
7272curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
7373 -H 'anthropic-version: 2023-06-01' \
74 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
74 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7575```
7676 
7777#### Response (200)
from line 96
9696 
9797**POST** `/v1/organizations/rbac_groups/{group_id}/members`
9898 
99Add a User to an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API.
99Add a User to an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API while an organization in the tenant uses SCIM provisioning.
100100 
101101The RBAC Groups API is available to Claude Enterprise organizations only.
102102 
from line 148
148148curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
149149 -H 'Content-Type: application/json' \
150150 -H 'anthropic-version: 2023-06-01' \
151 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
151 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
152152 -d '{
153153 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
154154 }'
from line 170
170170 
171171**DELETE** `/v1/organizations/rbac_groups/{group_id}/members/{user_id}`
172172 
173Remove a User from an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API.
173Remove a User from an RBAC Group. Membership of groups provisioned by an identity provider (source type `"scim"`) cannot be modified via the API while an organization in the tenant uses SCIM provisioning.
174174 
175175The RBAC Groups API is available to Claude Enterprise organizations only.
176176 
from line 208
208208curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members/$USER_ID \
209209 -X DELETE \
210210 -H 'anthropic-version: 2023-06-01' \
211 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
211 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
212212```
213213 
214214#### Response (200)