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

# List Webhook Subscriptions

> Get all webhook subscriptions for a client



## OpenAPI

````yaml get /webhooks/subscriptions
openapi: 3.0.1
info:
  title: ChatDash Webhook API Documentation
  description: API Documentation for the ChatDash Webhook Subscription System
  version: 1.0.0
servers:
  - url: https://api.chat-dash.com/v1/public
security: []
paths:
  /webhooks/subscriptions:
    get:
      tags:
        - Webhooks
      summary: List Webhook Subscriptions
      description: Get all webhook subscriptions for a client
      parameters:
        - name: Authorization
          in: header
          required: true
          description: Client-specific API key for authentication
          schema:
            type: string
            pattern: ^CD\.CL\.
        - name: clientId
          in: query
          required: true
          description: Filter subscriptions by client ID
          schema:
            type: string
      responses:
        '200':
          description: List of webhook subscriptions
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookSubscription'
components:
  schemas:
    WebhookSubscription:
      type: object
      properties:
        _id:
          type: string
          description: Unique identifier for the subscription
        clientId:
          type: string
          description: The client associated with the subscription
        agentId:
          type: string
          description: The agent associated with the subscription
        webhookUrl:
          type: string
          description: The URL where event notifications will be sent
        events:
          type: array
          description: List of events that trigger notifications
          items:
            type: string
            enum:
              - call.started
              - call.missed
              - call.ended
              - call.inbound
        createdAt:
          type: string
          format: date-time
          description: When the subscription was created
        updatedAt:
          type: string
          format: date-time
          description: When the subscription was last updated

````