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

# Discover channels the bot can post to (cached 5 min)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/notifications/destinations/discover
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/notifications/destinations/discover:
    get:
      tags:
        - notifications
      summary: Discover channels the bot can post to (cached 5 min)
      operationId: discoverNotificationChannels
      parameters:
        - name: channel_kind
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/ChannelKind'
            default: slack
        - name: connection_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Connection Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DiscoveredChannelResponse'
                title: Response Discovernotificationchannels
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ChannelKind:
      type: string
      enum:
        - slack
      title: ChannelKind
      description: |-
        The messaging channel a destination delivers through.

        ``slack`` is the only kind in v1. New kinds are additive — add a member
        here, a provider class, and a ``PROVIDER_REGISTRY`` entry.
    DiscoveredChannelResponse:
      properties:
        target_id:
          type: string
          title: Target Id
        target_label:
          type: string
          title: Target Label
        is_private:
          type: boolean
          title: Is Private
          default: false
      additionalProperties: false
      type: object
      required:
        - target_id
        - target_label
      title: DiscoveredChannelResponse
      description: A channel the bot can post to (provider-agnostic shape).
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````