Claude Platform Docs

Elimina membro service account del workspace

$client->beta->organization->workspaces->serviceAccounts->remove(string serviceAccountID, string workspaceID, ?list<AnthropicBeta> betas): ServiceAccountRemoveResponse
DELETE/v1/organizations/workspaces/{workspace_id}/service_accounts/{service_account_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 API Admin non sono accettate. Consulta Gestire WIF con l'Admin API.

Rimuovi un service account da un workspace.

La rimozione è idempotente (restituisce 200 anche se l'appartenenza era già stata rimossa). Una 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
workspaceID: string

ID of the workspace.

serviceAccountID: string

ID of the service account.

betas?:optional list<AnthropicBeta>

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

Returns
class ServiceAccountRemoveResponse { $type = 'service_account_workspace_member_deleted'; $serviceAccountID; $workspaceID; }
"service_account_workspace_member_deleted" type
string serviceAccountID

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

string workspaceID

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

Elimina membro service account del workspace
<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(apiKey: 'my-anthropic-api-key');

$serviceAccount = $client
  ->beta
  ->organization
  ->workspaces
  ->serviceAccounts
  ->remove(
  'service_account_id',
  workspaceID: 'workspace_id',
  betas: [AnthropicBeta::MESSAGE_BATCHES_2024_09_24],
);

var_dump($serviceAccount);
Returns Examples
Response 200
{
  "service_account_id": "service_account_id",
  "type": "service_account_workspace_member_deleted",
  "workspace_id": "workspace_id"
}