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

# List available event types

> Returns a list of all available webhook event types that can be subscribed to.



## OpenAPI

````yaml /openapi.json get /api/webhookSubscriptions.eventTypes
openapi: 3.0.3
info:
  title: Notifuse API
  description: API for Notifuse - a transactional email and newsletter management platform
  version: 1.0.0
  contact:
    name: Notifuse Support
    url: https://www.notifuse.com/support
    email: hello@notifuse.com
servers:
  - url: https://{notifuseDomain}
    description: Customer-specific Notifuse API server
    variables:
      notifuseDomain:
        description: Your unique Notifuse domain
        default: demo.notifuse.com
security: []
paths:
  /api/webhookSubscriptions.eventTypes:
    get:
      summary: List available event types
      description: >-
        Returns a list of all available webhook event types that can be
        subscribed to.
      operationId: listWebhookEventTypes
      responses:
        '200':
          description: List of available event types
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWebhookEventTypesResponse'
        '401':
          description: Unauthorized - invalid or missing authentication token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    ListWebhookEventTypesResponse:
      type: object
      properties:
        event_types:
          type: array
          items:
            type: string
          example:
            - contact.created
            - contact.updated
            - contact.deleted
            - list.subscribed
            - list.unsubscribed
            - email.sent
            - email.delivered
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
      required:
        - error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: API token for authentication

````