---
title: "Delete Orchestration Rule"
method: DELETE
path: "/orchestration/rules/{id}"
tags: ["Orchestration Rules"]
---

# Delete Orchestration Rule

`DELETE /orchestration/rules/{id}`

Deactivates an orchestration rule by updating its status to DELETED.
Once deleted, the rule will no longer trigger new orchestrations.
Any orchestrations previously created by the rule will continue to be processed.

The request accepts a single rule ID and returns the updated rule resource
with its status set to DELETED upon success.

## Path parameters

- `id` string, required

## Response `200`

A successful response.

- DeleteOrchestrationRuleResponse
  - `rule` OrchestrationRule
    - `id` string — Unique identifier for the orchestration rule.
    - `ref_id` string — Unique reference ID for the rule.
    - `nickname` string — Optional human-readable nickname for the rule.
    - `profile_id` string — Profile ID of the account owner.
    - `identity_id` string — Identity ID of the account owner.
    - `account_id` string — Account ID where the rule applies.
    - `status` 'ACTIVE' | 'DELETED' | 'PENDING' | 'REJECTED' — - ACTIVE: The rule is active, deposits matching the `source_asset` and `source` of this rule start a conversion and subsequent delivery of the `destination_asset` to the specified `destination`. - DELETED: The rule has been deleted, newly deposited `source_assets` to the `source` of this rule will not be converted. The deposited `source_asset` is still going to be credited to the Profile specified by `profile_id`. - PENDING: The rule creation is pending approval(s) before the rule becomes ACTIVE. - REJECTED: The rule creation has been rejected during the approval process.
    - `source_asset` string — Asset being converted from.
    - `destination_asset` string — Asset being converted to.
    - `source` OrchestrationRuleSource
      - `crypto` OrchestrationRuleCryptoSource
        - `address_id` string
        - `address` string
        - `network` string
      - `fiat` OrchestrationRuleFiatSource
        - `deposit_instructions_id` string
        - `network` string
        - `account_type` string
        - `memo_id` string
      - `profile` OrchestrationRuleProfileSource
        - `profile_id` string
    - `destination` OrchestrationRuleDestination
      - `crypto` OrchestrationRuleCryptoDestination
        - `address` string
        - `network` string
      - `fiat` OrchestrationRuleFiatDestination
        - `fiat_account_id` string
        - `memo` string
      - `profile` OrchestrationRuleProfileDestination
        - `profile_id` string
    - `created_at` string, date-time — Timestamp when the rule was created.

---

[API](https://skmtc.net/paxos/apis/paxos-api.md) · [All operations](https://skmtc.net/paxos/apis/paxos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paxos/paxos-api/versions/0687ca8c9a8d/schema)
