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

# Get webhook setup



## OpenAPI

````yaml /openapi_v4_core.json get /v4/core/integrations/{integrationType}/webhook-setup
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-setup:
    get:
      tags:
        - Integration
      summary: Get webhook setup
      operationId: IntegrationController_getWebhookSetup
      parameters:
        - name: integrationType
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWebhookSetupResponse'
components:
  schemas:
    GetWebhookSetupResponse:
      type: object
      properties:
        webhook_url:
          type: string
        settings:
          type: array
          items:
            $ref: '#/components/schemas/IntegrationPlatformWebhookSetting'
      required:
        - webhook_url
        - settings
    IntegrationPlatformWebhookSetting:
      type: object
      properties:
        binding:
          type: string
          enum:
            - query
            - header
        name:
          type: string
        purpose:
          type: string
          enum:
            - INTEGRATION_ENTITY_ID
            - VERIFICATION_TOKEN
      required:
        - binding
        - name
        - purpose
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key
      description: Your Commenda Integrations API key, sent in the `api_key` header.

````