Claude Platform Docs

从服务账户移除工作区

$ ant beta:organization:service-accounts:workspaces remove
DELETE/v1/organizations/service_accounts/{service_account_id}/workspaces/{workspace_id}

需要具有 org:admin 作用域的 OAuth 访问令牌,可通过 ant auth login --scope org:admin 或工作负载身份联合规则获取;不接受 Admin API 密钥。请参阅使用 Admin API 管理 WIF

从工作区中移除服务账号。

这是 DELETE /workspaces/{workspace_id}/service_accounts/{service_account_id} 的镜像,从服务账号一侧寻址。移除是幂等的(即使成员资格已被移除也返回 200)。对隐式默认工作区成员资格执行 DELETE 会返回 200,但这是空操作,成员资格仍然保留;删除显式的默认工作区行会恢复为隐式的 workspace_user 成员资格。已归档的工作区返回 400。

Parameters
--service-account-id: string

Path param: ID of the service account.

--workspace-id: string

Path param: ID of the workspace.

--beta: optional array of AnthropicBeta

Header param: Optional header to specify the beta version(s) you want to use.

Returns
BetaOrganizationServiceAccountWorkspaceRemoveResponse: object{ service_account_id, type, workspace_id }
service_account_id: string

Tagged service account ID (svac_...) named in the delete request. Removal is idempotent; see the endpoint description for the implicit-membership no-op.

type: "service_account_workspace_member_deleted"
workspace_id: string

Tagged workspace ID (wrkspc_...) named in the delete request.

从服务账户移除工作区
ant beta:organization:service-accounts:workspaces remove \
  --api-key my-anthropic-api-key \
  --service-account-id service_account_id \
  --workspace-id workspace_id
Returns Examples
Response 200
{
  "service_account_id": "service_account_id",
  "type": "service_account_workspace_member_deleted",
  "workspace_id": "workspace_id"
}