> ## Documentation Index
> Fetch the complete documentation index at: https://docs.range.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete an alert rule

> Soft-deletes the rule: it is disabled and hidden from list/get, but the row is retained in the database (only `deleted_at` is stamped).



## OpenAPI

````yaml /api-reference/platform-api.json delete /v1/risk/alert-rules/{rule_id}
openapi: 3.0.0
info:
  title: Range Platform API
  description: >-
    The Range Platform API for workspace management, counterparties, and
    operational tooling.
  version: 1.7.13
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Transfer Enrichments
    description: Attach workspace-scoped notes and categories to transfers.
  - name: Counterparties
    description: Manage external entities, their addresses, bank accounts, and documents.
paths:
  /v1/risk/alert-rules/{rule_id}:
    delete:
      tags:
        - Alert Rules
      summary: Delete an alert rule
      description: >-
        Soft-deletes the rule: it is disabled and hidden from list/get, but the
        row is retained in the database (only `deleted_at` is stamped).
      operationId: deleteRule
      parameters:
        - name: rule_id
          required: true
          in: path
          description: The alert rule id.
          schema:
            type: string
            example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteAlertRuleResponseDto'
components:
  schemas:
    DeleteAlertRuleResponseDto:
      type: object
      properties:
        acknowledged:
          type: boolean
          example: true
      required:
        - acknowledged
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````