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",
7480 "group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
81 "rbac_group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
7582 "type": "rbac_group_member",
7683 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
7784}