Claude Platform Docs

RBACグループを削除

DELETE/v1/organizations/rbac_groups/{group_id}

RBACグループを削除します。IDプロバイダーによってプロビジョニングされたグループ(ソースタイプ "scim")はAPI経由で削除できません。

RBAC Groups API は Claude Enterprise 組織でのみ利用可能です。

Path parameters
group_id: string

ID of the RBAC Group.

Returns
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グループを削除
cURL
curl https://api.anthropic.com/v1/organizations/rbac_groups/$GROUP_ID \
    -X DELETE \
    -H 'anthropic-version: 2023-06-01' \
    -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
Returns Examples
Response 200
{
  "id": "rbac_group_012rppKaSVsmTo6NqRDXQXNF",
  "type": "rbac_group_deleted"
}