Claude Platform Docs

RBAC Groups

List RBAC Groups
GET/v1/organizations/rbac_groups
Get RBAC Group
GET/v1/organizations/rbac_groups/{group_id}
Create RBAC Group
POST/v1/organizations/rbac_groups
Update RBAC Group
POST/v1/organizations/rbac_groups/{group_id}
Delete RBAC Group
DELETE/v1/organizations/rbac_groups/{group_id}
Models
RbacGroup object{ id, created_at, name, 4 more }
id: string

ID of the RBAC Group.

created_at: string

RFC 3339 timestamp of when the RBAC Group was created.

formatdate-time
name: string

Name of the RBAC Group. Not uniqueness-enforced.

roles: array of string or null

RBAC Role IDs attached to this RBAC Group. Role attachment is managed in the admin settings and is read-only on this API. null means role data was temporarily unavailable — retry to distinguish from an empty list.

source_type: "direct" or "scim"

How the RBAC Group was created: "direct" for groups created directly (for example, in the organization's admin settings), "scim" for groups provisioned by the identity provider.

One of the following:
"direct"
"scim"
type: "rbac_group"

Object type.

For RBAC Groups, this is always "rbac_group".

defaultrbac_group
updated_at: string

RFC 3339 timestamp of when the RBAC Group was last updated.

formatdate-time
RbacGroupDeleted object{ id, type }
id: string

ID of the RBAC Group.

type: "rbac_group_deleted"

Deleted object type.

For RBAC Groups, this is always "rbac_group_deleted".

defaultrbac_group_deleted

RBAC GroupsMembers

List RBAC Group Members
GET/v1/organizations/rbac_groups/{group_id}/members
Add RBAC Group Member
POST/v1/organizations/rbac_groups/{group_id}/members
Remove RBAC Group Member
DELETE/v1/organizations/rbac_groups/{group_id}/members/{user_id}