Claude Platform Docs

刪除服務帳戶工作區成員

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

需要具有 org:admin 範圍的 OAuth 存取權杖,可透過 ant auth login --scope org:admin 或工作負載身分聯合規則取得;不接受 Admin API 金鑰。請參閱使用 Admin API 管理 WIF

從工作區移除服務帳戶。

移除操作具冪等性(即使成員資格已被移除,仍會傳回 200)。對隱含的預設工作區成員資格執行 DELETE 會傳回 200,但不會產生任何作用,成員資格仍會保留;刪除明確的預設工作區記錄會還原為隱含的 workspace_user 成員資格。已封存的工作區會傳回 400。

Parameters
--workspace-id: string

Path param: ID of the workspace.

--service-account-id: string

Path param: ID of the service account.

--beta: optional array of AnthropicBeta

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

Returns
BetaOrganizationWorkspaceServiceAccountRemoveResponse: 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:workspaces:service-accounts remove \
  --api-key my-anthropic-api-key \
  --workspace-id workspace_id \
  --service-account-id service_account_id
Returns Examples
Response 200
{
  "service_account_id": "service_account_id",
  "type": "service_account_workspace_member_deleted",
  "workspace_id": "workspace_id"
}