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

# List Channels

> List account-level notification channels.

Returns all channel configurations for the account (workflow_id=None scope).
channel_type is required - no cross-type aggregation.



## OpenAPI

````yaml https://platform.unstructuredapp.io/openapi.json get /api/v1/notifications/channels
openapi: 3.1.0
info:
  title: Platform API
  version: 3.1.0
servers:
  - url: https://platform.unstructuredapp.io/
    description: Unstructured Platform API
    x-speakeasy-server-id: platform-api
security: []
paths:
  /api/v1/notifications/channels:
    get:
      tags:
        - channels
      summary: List Channels
      description: >-
        List account-level notification channels.


        Returns all channel configurations for the account (workflow_id=None
        scope).

        channel_type is required - no cross-type aggregation.
      operationId: list_channels_api_v1_notifications_channels_get
      parameters:
        - name: channel_type
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/ChannelType'
        - name: enabled
          in: query
          required: false
          schema:
            anyOf:
              - type: boolean
              - type: 'null'
            title: Enabled
        - name: unstructured-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Unstructured-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChannelListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ChannelType:
      type: string
      enum:
        - webhook
        - email
      title: ChannelType
      description: Notification delivery channel types.
    ChannelListResponse:
      properties:
        items:
          items:
            oneOf:
              - $ref: '#/components/schemas/WebhookChannelResponse'
              - $ref: '#/components/schemas/EmailChannelResponse'
            discriminator:
              propertyName: channel_type
              mapping:
                email:
                  $ref: '#/components/schemas/EmailChannelResponse'
                webhook:
                  $ref: '#/components/schemas/WebhookChannelResponse'
          type: array
          title: Items
          description: List of channels
      type: object
      required:
        - items
      title: ChannelListResponse
      description: >-
        List response for notification channels (no pagination, max 50 per
        scope).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    WebhookChannelResponse:
      properties:
        channel_type:
          type: string
          const: webhook
          title: Channel Type
          default: webhook
        id:
          type: string
          title: Id
          description: Channel ID
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Channel description
        event_types:
          items:
            type: string
          type: array
          title: Event Types
          description: Subscribed event types
        enabled:
          type: boolean
          title: Enabled
          description: Channel enabled status
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: Last update timestamp
        url:
          type: string
          title: Url
          description: Webhook endpoint URL
      type: object
      required:
        - id
        - event_types
        - enabled
        - created_at
        - updated_at
        - url
      title: WebhookChannelResponse
      description: Response for webhook notification channel.
    EmailChannelResponse:
      properties:
        channel_type:
          type: string
          const: email
          title: Channel Type
          default: email
        id:
          type: string
          title: Id
          description: Channel ID
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Channel description
        event_types:
          items:
            type: string
          type: array
          title: Event Types
          description: Subscribed event types
        enabled:
          type: boolean
          title: Enabled
          description: Channel enabled status
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: Last update timestamp
        email_config:
          $ref: '#/components/schemas/EmailChannelConfigResponse'
          description: Email channel configuration
      type: object
      required:
        - id
        - event_types
        - enabled
        - created_at
        - updated_at
        - email_config
      title: EmailChannelResponse
      description: Response for email notification channel.
    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
    EmailChannelConfigResponse:
      properties:
        cc:
          anyOf:
            - items:
                type: string
                format: email
              type: array
            - type: 'null'
          title: Cc
          description: CC email addresses (if provider supports)
        reply_to:
          anyOf:
            - type: string
              format: email
            - type: 'null'
          title: Reply To
          description: Reply-to email address
        recipient_email:
          type: string
          format: email
          title: Recipient Email
          description: Primary recipient email address
        provider:
          type: string
          title: Provider
          description: Email provider (read-only, from platform config)
      type: object
      required:
        - recipient_email
        - provider
      title: EmailChannelConfigResponse
      description: Email config in response (no sensitive data).

````