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)