Claude Platform Docs

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

$ ant beta:organization:federation:rules:workspaces remove
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
--federation-rule-id: string

Path param: ID of the federation rule.

--workspace-id: string

Path param: ID of the workspace to disable for.

--beta: optional array of AnthropicBeta

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

Returns
BetaOrganizationFederationRuleWorkspaceRemoveResponse: object{ federation_rule_id, type, workspace_id }
federation_rule_id: string

Tagged ID of the federation rule.

type: "federation_rule_workspace_deleted"
workspace_id: string

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

페더레이션 규칙 워크스페이스 제거
ant beta:organization:federation:rules:workspaces remove \
  --api-key my-anthropic-api-key \
  --federation-rule-id federation_rule_id \
  --workspace-id workspace_id
Returns Examples
Response 200
{
  "federation_rule_id": "federation_rule_id",
  "type": "federation_rule_workspace_deleted",
  "workspace_id": "workspace_id"
}