> ## 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.

# List alert channels for the caller workspace

> Returns every non-deleted alert channel for your workspace, including disabled ones. Each item carries `enabled` (your on/off state) and `connected` (delivery readiness). To hide a channel, delete it — disabling only stops delivery.



## OpenAPI

````yaml /api-reference/platform-api.json get /v1/risk/channels
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:
    get:
      tags:
        - Channels
      summary: List alert channels for the caller workspace
      description: >-
        Returns every non-deleted alert channel for your workspace, including
        disabled ones. Each item carries `enabled` (your on/off state) and
        `connected` (delivery readiness). To hide a channel, delete it —
        disabling only stops delivery.
      operationId: listChannels
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAlertChannelsResponseDto'
components:
  schemas:
    ListAlertChannelsResponseDto:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/AlertChannelListItemDto'
      required:
        - items
    AlertChannelListItemDto:
      type: object
      properties:
        id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        workspace_id:
          type: string
          example: workspace-123
        name:
          type: string
          example: My Slack Channel
        type:
          enum:
            - slack
            - telegram
            - discord
            - webhook
            - pagerduty
            - email
            - incidentio
          type: string
          example: slack
        enabled:
          type: boolean
          example: true
        connected:
          type: boolean
          description: >-
            Whether the channel is ready to receive deliveries. Always true
            except for a telegram channel that has not yet linked a chat.
          example: true
        created_at:
          type: string
          example: '2026-05-14T12:00:00.000Z'
        params:
          type: object
          description: >-
            Type-specific params surfaced in list items. Present only for
            telegram channels, carrying the registration `unique_code`.
          additionalProperties: true
          example:
            unique_code: abc123
      required:
        - id
        - workspace_id
        - name
        - type
        - enabled
        - connected
        - created_at
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Authorization method required to allow user to access the api endpoints.

````