Claude Platform Docs

페더레이션 규칙 워크스페이스 제거

$client->beta->organization->federation->rules->workspaces->remove(string workspaceID, string federationRuleID, ?list<AnthropicBeta> betas): WorkspaceRemoveResponse
DELETE/v1/organizations/federation_rules/{federation_rule_id}/workspaces/{workspace_id}

org:admin 범위의 OAuth 액세스 토큰이 필요합니다. 이 토큰은 ant auth login --scope org:admin 또는 워크로드 ID 페더레이션 규칙을 통해 얻을 수 있으며, Admin API 키는 허용되지 않습니다. Admin API로 WIF 관리를 참조하세요.

워크스페이스에 대해 페더레이션 규칙을 비활성화합니다.

멱등적입니다. 활성화가 이미 제거된 경우에도 성공합니다. OAuth 호출자는 oauth_scopeworkspace:developer 또는 workspace:inference인 규칙만 관리할 수 있으며, 다른 범위는 Console 세션이 필요합니다.

Parameters
federationRuleID: string

ID of the federation rule.

workspaceID: string

ID of the workspace to disable for.

betas?:optional list<AnthropicBeta>

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

Returns
class WorkspaceRemoveResponse { $type = 'federation_rule_workspace_deleted'; $federationRuleID; $workspaceID; }
"federation_rule_workspace_deleted" type
string federationRuleID

Tagged ID of the federation rule.

string workspaceID

Tagged ID of the workspace named in the delete request. Removal is idempotent.

페더레이션 규칙 워크스페이스 제거
<?php

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

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

$workspace = $client->beta->organization->federation->rules->workspaces->remove(
  'workspace_id',
  federationRuleID: 'federation_rule_id',
  betas: [AnthropicBeta::MESSAGE_BATCHES_2024_09_24],
);

var_dump($workspace);
Returns Examples
Response 200
{
  "federation_rule_id": "federation_rule_id",
  "type": "federation_rule_workspace_deleted",
  "workspace_id": "workspace_id"
}