Claude Platform Docs

Workspace aus Service-Account entfernen

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

Erfordert ein OAuth-Access-Token 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.

Entfernt einen Service-Account aus einem Workspace.

Spiegelung von DELETE /workspaces/{workspace_id}/service_accounts/{service_account_id}, adressiert von der Service-Account-Seite. Das Entfernen ist idempotent (gibt 200 zurück, auch wenn die Mitgliedschaft bereits entfernt wurde). Ein DELETE gegen 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
--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.

Workspace aus Service-Account entfernen
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"
}