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

# List Webhook Event Types

> Get the full list of events you can be notified about, grouped by topic. A webhook is an automatic message Finogate sends to your server the moment something happens (for example, a payment succeeds). Use this list to choose which events you want to receive when you set up a webhook.



## OpenAPI

````yaml GET /v1/platform/webhooks/event-types
openapi: 3.1.0
info:
  title: Finogate Platform API v1
  version: 0.1.0
servers:
  - url: https://api-sandbox.finogates.com
    description: Sandbox
  - url: https://api.finogates.com
    description: Production
security: []
tags:
  - name: auth
  - name: users
  - name: payees
  - name: verification
  - name: bank accounts
  - name: card processing
  - name: digital-assets
  - name: international
  - name: fees
  - name: onboarding
  - name: pending-applications
  - name: wallets
  - name: payments
  - name: document mailing
  - name: merchant onboarding
  - name: catalog
  - name: webhooks
  - name: screening
  - name: Platform - File Scanning
  - name: phone-numbers
  - name: sms
  - name: calls
  - name: listings
  - name: Card Transfers
  - name: embed-tokens
paths:
  /v1/platform/webhooks/event-types:
    get:
      tags:
        - webhooks
      summary: List the Events You Can Subscribe To
      description: >-
        Get the full list of events you can be notified about, grouped by topic.
        A webhook is an automatic message Finogate sends to your server the
        moment something happens (for example, a payment succeeds). Use this
        list to choose which events you want to receive when you set up a
        webhook.
      operationId: list_webhook_event_types_v1_platform_webhooks_event_types_get
      responses:
        '200':
          description: The events you can subscribe to, grouped by topic.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
              example:
                status_code: 200
                data:
                  payment:
                    - payment_intent.succeeded
                    - payment_intent.failed
                    - payment_intent.settled
                    - payment_intent.refunded
                  user:
                    - user.created
                    - user.activated
                    - user.deleted
                  wallet:
                    - wallet.created
                    - wallet.funded
                    - wallet.frozen
                  payee:
                    - payee.created
                    - payee.updated
                    - payee.archived
                  card:
                    - card.requested
                    - card.issued
                    - card.reloaded
                  document_mailing:
                    - document_mailing.tracking_updated
                query_generated_time: 1712847600000
      security:
        - _AuthenticatedBearer: []
components:
  schemas:
    CommonResponse:
      properties:
        status_code:
          type: integer
          title: Status Code
          description: HTTP status code for the response.
        data:
          title: Data
          description: Payload or error details.
        query_generated_time:
          type: integer
          title: Query Generated Time
          description: >-
            UTC timestamp (milliseconds since epoch) when response was
            generated.
      type: object
      required:
        - status_code
        - data
        - query_generated_time
      title: CommonResponse
      description: |-
        Standard response wrapper for single-object responses and errors.

        Generic over the payload type. A route that declares
        ``CommonResponse[SomeModel]`` gets the real ``data`` schema rendered in
        OpenAPI/Swagger; a bare ``CommonResponse`` leaves ``data`` untyped.
  securitySchemes:
    _AuthenticatedBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /v1/platform/auth/token

````