Claude Platform Docs

Service-Account als Workspace-Mitglied löschen

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

Erfordert ein OAuth-Zugriffstoken mit dem Scope org:admin, aus ant auth login --scope org:admin oder einer Workload-Identity-Federation-Regel; Admin-API-Keys werden nicht akzeptiert. Siehe WIF mit der Admin API verwalten.

Entferne ein Service-Konto aus einem Workspace.

Das Entfernen ist idempotent (gibt 200 zurück, auch wenn die Mitgliedschaft bereits entfernt wurde). Ein DELETE auf die implizite Mitgliedschaft im Standard-Workspace gibt 200 zurück, ist aber ein No-op, und die Mitgliedschaft bleibt bestehen; das Löschen einer expliziten Standard-Workspace-Zeile setzt auf die implizite workspace_user- Mitgliedschaft zurück. Archivierte Workspaces geben 400 zurück.

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.

Service-Account als Workspace-Mitglied löschen
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"
}