The whole hunk
from line 5, old and new numbered
/
lines
from line 5
55
66# List RBAC Group Members
77
8**GET** `/v1/organizations/rbac_groups/{group_id}/members`
8**GET** `/v1/organizations/rbac_groups/{rbac_group_id}/members`
99
1010List members of an RBAC Group.
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 53
5353
5454 Email of the User.
5555
56 - `group_id: string`
56 - `rbac_group_id: string`
5757
5858 ID of the RBAC Group.
5959
from line 61
6161
6262 ID of the User.
6363
64 - `group_id: string`
65
66 **Deprecated**: Use `rbac_group_id` instead; `group_id` always has the same value.
67
68 Deprecated: use `rbac_group_id` instead. ID of the RBAC Group; always the same value as `rbac_group_id`.
69
6470- `has_more: boolean`
6571
6672 Indicates if there are more results in the requested page direction.
from line 78
7278## Example
7379
7480```bash
75curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID/members \
81curl https://api.anthropic.com/v1/organizations/rbac_groups/$RBAC_GROUP_ID/members \
7682 -H 'anthropic-version: 2023-06-01' \
7783 -H "X-Api-Key: $ANTHROPIC_API_KEY"
7884```
from line 92
8692 "created_at": "2024-10-30T23:58:27.427722Z",
8894 "group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
95 "rbac_group_id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
8996 "type": "rbac_group_member",
9097 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
9198 }