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

# Webhook Active List

> Retrieves a list of all registered webhooks along with their URLs, descriptions, subscribed events, and associated agents.



## OpenAPI

````yaml GET /v2/webhooks/
openapi: 3.1.0
info:
  title: CloserX.ai API
  description: >-
    The CloserX.ai API provides programmatic access to manage AI-powered calling
    operations, including agent creation, campaign management, contact handling,
    telephony integration, and more. This API enables seamless automation and
    integration with CRM systems, telephony providers, and other third-party
    services for enhanced client communication and business operations.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.closerx.ai/api
security:
  - api_key: []
paths:
  /v2/webhooks/:
    get:
      summary: Get Webhook List
      description: >-
        Retrieves a list of all registered webhooks along with their URLs,
        descriptions, subscribed events, and associated agents.
      parameters:
        - name: Company-Name
          in: header
          required: true
          description: Schema name for multi-tenancy
          schema:
            type: string
      responses:
        '200':
          description: Webhook list retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWebhookListResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    GetWebhookListResponse:
      type: object
      properties:
        message:
          type: string
          example: Webhook list retrieved successfully!
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: integer
                example: 3
              webhook_url:
                type: string
                example: >-
                  https://services.leadconnectorhq.com/hooks/DHubtJyGmvUTtbYB7aEL/webhook-trigger/1a499911-ce93-4451-ba41-d64dea7b6d4e
              description:
                type: string
                example: prio
              agents:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      example: 16
                    agent_name:
                      type: string
                      example: inbound prio agent
              events_to_subscribe:
                type: array
                items:
                  type: string
                  example: call.started
    Error:
      required:
        - success
        - message
        - data
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key

````