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

# List webhooks

> Returns all registered webhook URLs for your organization.



## OpenAPI

````yaml /openapi.json get /v1/webhooks
openapi: 3.1.0
info:
  title: Sales Ask API
  version: 1.0.0
  description: >-
    Public API for integrating with Sales Ask. Authenticate every request using
    your organization API key in the x-api-key header. To generate an API key,
    call POST /organizations/:organizationId/api-key while authenticated as an
    organization admin.
servers:
  - url: https://integrations.salesask.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/webhooks:
    get:
      tags:
        - Webhooks
      summary: List webhooks
      description: Returns all registered webhook URLs for your organization.
      operationId: listWebhooks
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  webhooks:
                    type: array
                    items:
                      $ref: '#/components/schemas/Webhook'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Webhook:
      type: object
      properties:
        id:
          type: string
          example: wh_abc123
        url:
          type: string
          format: uri
          example: https://your-crm.com/hooks/salesask
        active:
          type: boolean
          example: true
        trigger:
          type: string
          nullable: true
          description: >-
            Recording source filter: 'all' or a specific source (e.g. 'app',
            'justcall')
        events:
          type: array
          items:
            type: string
            enum:
              - recording.processed
              - recording.integration_updated
          description: >-
            Events this webhook is subscribed to. If empty or missing, defaults
            to ['recording.processed'].
          example:
            - recording.processed
            - recording.integration_updated
        createdAt:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````