Claude Platform Docs

Remove Federation Rule Workspace

$ ant beta:organization:federation:rules:workspaces remove
DELETE/v1/organizations/federation_rules/{federation_rule_id}/workspaces/{workspace_id}

Requires an OAuth access token with the org:admin scope, from ant auth login --scope org:admin or a workload identity federation rule; Admin API keys are not accepted. See Manage WIF with the Admin API.

Disable a federation rule for a workspace.

Idempotent; succeeds even if the enablement was already removed. OAuth callers may only manage rules whose oauth_scope is workspace:developer or workspace:inference; other scopes require a Console session.

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.

Remove Federation Rule Workspace

ant beta:organization:federation:rules:workspaces remove \
  --api-key my-anthropic-api-key \
  --federation-rule-id federation_rule_id \
  --workspace-id workspace_id
{
  "federation_rule_id": "federation_rule_id",
  "type": "federation_rule_workspace_deleted",
  "workspace_id": "workspace_id"
}
Returns Examples
{
  "federation_rule_id": "federation_rule_id",
  "type": "federation_rule_workspace_deleted",
  "workspace_id": "workspace_id"
}