Claude Platform Docs

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

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 세션이 필요합니다.

Path parameters
federation_rule_id: string

ID of the federation rule.

workspace_id: string

ID of the workspace to disable for.

Headers
"anthropic-beta": optional array of string

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

To use multiple betas, use a comma separated list like beta1,beta2 or specify the header multiple times for each beta.

Returns
federation_rule_id: string

Tagged ID of the federation rule.

type: "federation_rule_workspace_deleted"
defaultfederation_rule_workspace_deleted
workspace_id: string

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

페더레이션 규칙 워크스페이스 제거
cURL
curl https://api.anthropic.com/v1/organizations/federation_rules/$FEDERATION_RULE_ID/workspaces/$WORKSPACE_ID \
    -X DELETE \
    -H 'anthropic-version: 2023-06-01' \
    -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
Returns Examples
Response 200
{
  "federation_rule_id": "federation_rule_id",
  "type": "federation_rule_workspace_deleted",
  "workspace_id": "workspace_id"
}