> ## 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 a channel

> Soft-deletes one channel owned by your workspace: it is disabled and hidden from list/get, but the row is retained (only `deleted_at` is stamped).



## OpenAPI

````yaml /api-reference/platform-api.json delete /v1/risk/channels/{channel_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/channels/{channel_id}:
    delete:
      tags:
        - Channels
      summary: Delete a channel
      description: >-
        Soft-deletes one channel owned by your workspace: it is disabled and
        hidden from list/get, but the row is retained (only `deleted_at` is
        stamped).
      operationId: deleteChannel
      parameters:
        - name: channel_id
          required: true
          in: path
          description: The channel id.
          schema:
            type: string
            example: 44444444-4444-4444-4444-444444444445
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteAlertChannelResponseDto'
components:
  schemas:
    DeleteAlertChannelResponseDto:
      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.

````