Claude Platform Docs

Участники

List RBAC Group Members
GET/v1/organizations/rbac_groups/{group_id}/members

List members of an RBAC Group.

Add RBAC Group Member
POST/v1/organizations/rbac_groups/{group_id}/members

Add 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.

Remove RBAC Group Member
DELETE/v1/organizations/rbac_groups/{group_id}/members/{user_id}

Remove 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.

Models
BetaRBACGroupMember object{ type, created_at, email, 2 more }
type: "rbac_group_member"

Object type.

For RBAC Group Members, this is always "rbac_group_member".

defaultrbac_group_member
created_at: string

RFC 3339 timestamp of when the User was added to the RBAC Group.

formatdate-time
email: string

Email of the User.

group_id: string

ID of the RBAC Group.

user_id: string

ID of the User.

BetaRBACGroupMemberDeleted object{ type, group_id, user_id }
type: "rbac_group_member_deleted"

Deleted object type. For RBAC Group Members, this is always "rbac_group_member_deleted".

defaultrbac_group_member_deleted
group_id: string

ID of the RBAC Group.

user_id: string

ID of the User.