> ## 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 Slack integration

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



## OpenAPI

````yaml /openapi.json get /slack-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:
  /slack-integration/project/{projectId}:
    get:
      tags:
        - Slack
      summary: Get Slack integration
      description: >-
        Get the Slack integration for a project, or null when none is
        configured.
      operationId: getSlackIntegration
      parameters:
        - schema:
            type: string
          required: true
          name: projectId
          in: path
      responses:
        '200':
          description: Slack integration details, or null
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackIntegration'
        '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:
    SlackIntegration:
      type:
        - object
        - 'null'
      properties:
        id:
          type: string
        projectId:
          type: string
        channelName:
          type:
            - string
            - 'null'
        webhookConfigured:
          type: boolean
        maskedWebhookUrl:
          type: string
          description: >-
            The webhook URL with its secret path segment masked, or an empty
            string when none is set.
        events:
          $ref: '#/components/schemas/IntegrationEvents'
        isActive:
          type:
            - boolean
            - 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - projectId
        - channelName
        - webhookConfigured
        - maskedWebhookUrl
        - events
        - isActive
        - createdAt
        - updatedAt
    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)

````