> ## 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.

# List supported customer webhook event types

> Return the webhook events the caller's org may subscribe to.

Endpoint enablement and per-event subscriptions are configured in Svix.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/webhooks/event-catalog
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/webhooks/event-catalog:
    get:
      tags:
        - webhooks
      summary: List supported customer webhook event types
      description: |-
        Return the webhook events the caller's org may subscribe to.

        Endpoint enablement and per-event subscriptions are configured in Svix.
      operationId: getWebhookEventCatalog
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventCatalogResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    EventCatalogResponse:
      properties:
        events:
          items:
            $ref: '#/components/schemas/EventCatalogEntry'
          type: array
          title: Events
      type: object
      required:
        - events
      title: EventCatalogResponse
      description: Supported customer webhook event types.
    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.
    EventCatalogEntry:
      properties:
        type:
          $ref: '#/components/schemas/EventType'
        description:
          type: string
          title: Description
        group:
          type: string
          title: Group
          description: Display grouping, e.g. 'Conversation'.
        sensitivity:
          $ref: '#/components/schemas/Sensitivity'
      type: object
      required:
        - type
        - description
        - group
        - sensitivity
      title: EventCatalogEntry
      description: One entitlement-visible webhook event in the org's catalog.
    EventType:
      type: string
      enum:
        - conversation.session.completed
        - session.extraction.completed
        - integration.connection.error
        - integration.connection.disconnected
        - knowledge_base.document.indexed
        - knowledge_base.document.failed
        - knowledge_base.document.quarantined
        - policy.violation.detected
      title: EventType
      description: Named platform events in the v1 launch catalog.
    Sensitivity:
      type: string
      enum:
        - non_pii
        - pii
        - gated
      title: Sensitivity
      description: Payload sensitivity tier for retention, docs, and observability.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````