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

Remove RBAC Group Member changed

api/beta/organization/rbac_groups/members/delete

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+11added
Lines−4removed
From line 5 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 5, old and new numbered
/
lines
from line 5
55 
66# Remove RBAC Group Member
77 
8**DELETE** `/v1/organizations/rbac_groups/{group_id}/members/{user_id}`
8**DELETE** `/v1/organizations/rbac_groups/{rbac_group_id}/members/{user_id}`
99 
1010Remove 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.
1111 
from line 13
1313 
1414## Path parameters
1515 
16- `group_id: string`
16- `rbac_group_id: string`
1717 
1818 ID of the RBAC Group.
1919 
from line 31
3131 
3232 default: rbac_group_member_deleted
3333 
34 - `group_id: string`
34 - `rbac_group_id: string`
3535 
3636 ID of the RBAC Group.
3737 
from line 39
3939 
4040 ID of the User.
4141 
42 - `group_id: string`
43 
44 **Deprecated**: Use `rbac_group_id` instead; `group_id` always has the same value.
45 
46 Deprecated: use `rbac_group_id` instead. ID of the RBAC Group; always the same value as `rbac_group_id`.
47 
4248## Example
4349 
4450```bash
45curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members/$USER_ID \
51curl https://api.anthropic.com/v1/organizations/rbac_groups/$RBAC_GROUP_ID/members/$USER_ID \
4652 -X DELETE \
4753 -H 'anthropic-version: 2023-06-01' \
4854 -H "X-Api-Key: $ANTHROPIC_API_KEY"
from line 59
5359```json
5460{
5561 "group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
62 "rbac_group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
5663 "type": "rbac_group_member_deleted",
5764 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
5865}