List RBAC Groups

List RBAC Groups in the Claude Enterprise tenant.

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

get/v1/organizations/rbac_groups?beta=true

Query parameters

limitinteger

Number of items to return per page.

Defaults to 20. Ranges from 1 to 1000.

Number of items to return per page.

Defaults to 20. Ranges from 1 to 1000.

pagestring nullable

Optionally set to the next_page token from the previous response.

Example:eyJjdXJzb3IiOiAicmJhY19ncm91cF8wMSJ9

Optionally set to the next_page token from the previous response.

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

has_moreboolean required

Indicates if there are more results in the requested page direction.

next_pagestring nullable required

Token to provide in as page in the subsequent request to retrieve the next page of data.

Example response

{
  "data": [
    {
      "created_at": "2024-10-30T23:58:27.427722Z",
      "id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
      "name": "Engineering",
      "roles": [
        "rbac_role_016J8xVtKpDq3Wy9ZmN2hR4s"
      ],
      "updated_at": "2024-10-30T23:58:27.427722Z"
    }
  ],
  "next_page": "eyJjdXJzb3IiOiAicmJhY19ncm91cF8wMSJ9"
}

Changes