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

# Get webhook integration

> Get the outgoing webhook integration for a project, or null when none is configured.



## OpenAPI

````yaml /openapi.json get /generic-webhook-integration/project/{projectId}
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /generic-webhook-integration/project/{projectId}:
    get:
      tags:
        - Generic Webhook
      summary: Get webhook integration
      description: >-
        Get the outgoing webhook integration for a project, or null when none is
        configured.
      operationId: getGenericWebhookIntegration
      parameters:
        - schema:
            type: string
          required: true
          name: projectId
          in: path
      responses:
        '200':
          description: Webhook integration details, or null
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericWebhookIntegration'
        '400':
          description: Unknown project, or its workspace could not be determined
          content:
            text/plain:
              schema:
                type: string
        '401':
          description: Missing or invalid credentials
        '403':
          description: No access to the project's workspace
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    GenericWebhookIntegration:
      type:
        - object
        - 'null'
      properties:
        id:
          type: string
        projectId:
          type: string
        webhookConfigured:
          type: boolean
        maskedWebhookUrl:
          type:
            - string
            - 'null'
        secretConfigured:
          type: boolean
        maskedSecret:
          type:
            - string
            - 'null'
          description: >-
            A preview of the HMAC signing secret used to sign outgoing
            deliveries.
        events:
          $ref: '#/components/schemas/GenericWebhookEvents'
        dueDateReminderLeadTimeMinutes:
          type: number
          description: >-
            How long before a due date the dueDateReminder event fires, in
            minutes.
        isActive:
          type:
            - boolean
            - 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - projectId
        - webhookConfigured
        - maskedWebhookUrl
        - secretConfigured
        - maskedSecret
        - events
        - dueDateReminderLeadTimeMinutes
        - isActive
        - createdAt
        - updatedAt
    GenericWebhookEvents:
      allOf:
        - $ref: '#/components/schemas/IntegrationEvents'
        - type: object
          properties:
            taskDeleted:
              type: boolean
            taskMoved:
              type: boolean
            taskDueDateChanged:
              type: boolean
            taskAssigneeChanged:
              type: boolean
            taskUnassigned:
              type: boolean
            dueDateReminder:
              type: boolean
          required:
            - taskDeleted
            - taskMoved
            - taskDueDateChanged
            - taskAssigneeChanged
            - taskUnassigned
            - dueDateReminder
    IntegrationEvents:
      type: object
      properties:
        taskCreated:
          type: boolean
        taskStatusChanged:
          type: boolean
        taskPriorityChanged:
          type: boolean
        taskTitleChanged:
          type: boolean
        taskDescriptionChanged:
          type: boolean
        taskCommentCreated:
          type: boolean
      required:
        - taskCreated
        - taskStatusChanged
        - taskPriorityChanged
        - taskTitleChanged
        - taskDescriptionChanged
        - taskCommentCreated
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````