Claude Platform Docs

Rimuovi workspace dal service account

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

Richiede un token di accesso OAuth con lo scope org:admin, ottenuto da ant auth login --scope org:admin o da una regola di workload identity federation; le chiavi Admin API non sono accettate. Consulta Gestisci WIF con l'Admin API.

Rimuovi un account di servizio da un workspace.

Speculare a DELETE /workspaces/{workspace_id}/service_accounts/{service_account_id}, indirizzato dal lato dell'account di servizio. La rimozione è idempotente (restituisce 200 anche se l'appartenenza era già stata rimossa). Un DELETE sull'appartenenza implicita al workspace predefinito restituisce 200 ma non ha effetto e l'appartenenza persiste; l'eliminazione di una riga esplicita del workspace predefinito ripristina l'appartenenza implicita workspace_user. I workspace archiviati restituiscono 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.

Rimuovi workspace dal service account
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"
}