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

# List webhook topics



## OpenAPI

````yaml /openapi_v4_core.json get /v4/core/integrations/{integrationType}/webhook-topics
openapi: 3.0.0
info:
  title: Commenda Integrations V4 API
  description: Commenda Integrations — unified accounting, commerce, and CRM API.
  version: 4.0.0
  contact: {}
servers:
  - url: https://api.integrations.commenda.io
    description: Production
security:
  - api_key: []
tags: []
paths:
  /v4/core/integrations/{integrationType}/webhook-topics:
    get:
      tags:
        - Integration
      summary: List webhook topics
      operationId: IntegrationController_getWebhookTopics
      parameters:
        - name: integrationType
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWebhookTopicsResponse'
components:
  schemas:
    GetWebhookTopicsResponse:
      type: object
      properties:
        topics:
          type: array
          items:
            type: string
      required:
        - topics
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key
      description: Your Commenda Integrations API key, sent in the `api_key` header.

````