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

Add RBAC Group Member changed

api/beta/organization/rbac_groups/members/create

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# Add RBAC Group Member
77 
8**POST** `/v1/organizations/rbac_groups/{group_id}/members`
8**POST** `/v1/organizations/rbac_groups/{rbac_group_id}/members`
99 
1010Add 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.
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 45
4545 
4646 Email of the User.
4747 
48 - `group_id: string`
48 - `rbac_group_id: string`
4949 
5050 ID of the RBAC Group.
5151 
from line 53
5353 
5454 ID of the User.
5555 
56 - `group_id: string`
57 
58 **Deprecated**: Use `rbac_group_id` instead; `group_id` always has the same value.
59 
60 Deprecated: use `rbac_group_id` instead. ID of the RBAC Group; always the same value as `rbac_group_id`.
61 
5662## Example
5763 
5864```bash
59curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
65curl https://api.anthropic.com/v1/organizations/rbac_groups/$RBAC_GROUP_ID/members \
6066 -H 'Content-Type: application/json' \
6167 -H 'anthropic-version: 2023-06-01' \
6268 -H "X-Api-Key: $ANTHROPIC_API_KEY" \
from line 78
7278 "created_at": "2024-10-30T23:58:27.427722Z",
7379 "email": "[email protected]",
7480 "group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
81 "rbac_group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
7582 "type": "rbac_group_member",
7683 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
7784}