Get RBAC Role

Retrieve an RBAC Role by ID.

The RBAC Roles API is available to Claude Enterprise organizations only.

get/v1/organizations/rbac_roles/{role_id}?beta=true

Path parameters

role_idstring required

ID of the RBAC Role.

ID of the RBAC Role.

Headers

x-api-keystring nullable

Your unique Admin API key for authentication.

This key is required in the header of all Admin API requests, to authenticate your account and access Anthropic's services. Get your Admin API key through the Console.

Response

Successful Response

created_atstring date-time required

RFC 3339 datetime string indicating when the RBAC Role was created.

idstring required

ID of the RBAC Role.

namestring required

Name of the RBAC Role.

type'rbac_role' required

Object type.

For RBAC Roles, this is always "rbac_role".

updated_atstring date-time required

RFC 3339 datetime string indicating when the RBAC Role was last updated.

Example response

{
  "created_at": "2024-10-30T23:58:27.427722Z",
  "id": "rbac_role_016J8xVtKpDq3Wy9ZmN2hR4s",
  "name": "Project Editor",
  "updated_at": "2024-10-30T23:58:27.427722Z"
}

Changes