---
title: "Create Slack integration"
method: POST
path: "/slack-integration/project/{projectId}"
tags: ["Slack"]
---

# Create Slack integration

`POST /slack-integration/project/{projectId}`

Create or replace the Slack integration for a project. The webhook URL is checked for shape only; delivery failures surface later.

## Path parameters

- `projectId` string, required

## Request body

- object
  - `webhookUrl` string, required
  - `channelName` string
  - `events` object
    - `taskCreated` boolean
    - `taskStatusChanged` boolean
    - `taskPriorityChanged` boolean
    - `taskTitleChanged` boolean
    - `taskDescriptionChanged` boolean
    - `taskCommentCreated` boolean

## Response `200`

The stored integration

- SlackIntegration, nullable
  - `id` string, required
  - `projectId` string, required
  - `channelName` string, nullable, required
  - `webhookConfigured` boolean, required
  - `maskedWebhookUrl` string, required — The webhook URL with its secret path segment masked, or an empty string when none is set.
  - `events` IntegrationEvents, required
    - `taskCreated` boolean, required
    - `taskStatusChanged` boolean, required
    - `taskPriorityChanged` boolean, required
    - `taskTitleChanged` boolean, required
    - `taskDescriptionChanged` boolean, required
    - `taskCommentCreated` boolean, required
  - `isActive` boolean, nullable, required
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required

## Other responses

- `400` — The webhook URL failed validation
- `401` — Missing or invalid credentials
- `403` — No workspace access, or missing workspace:manage_settings

## Changes

- **2026-08-24** `08bbb5bedb5d` — 1 breaking, 3 info
  - the response's body became nullable
  - added the non-success response with the status `400`
  - added the non-success response with the status `401`
  - added the non-success response with the status `403`
- **2026-07-11** `32cece1ebe43` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/usekaneo/apis/kaneo-api/changes/slack-integration/project/:projectId/post.md)

---

[API](https://skmtc.dev/usekaneo/apis/kaneo-api.md) · [All operations](https://skmtc.dev/usekaneo/apis/kaneo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/usekaneo/kaneo-api/revisions/9d1da42c10ce/schema)
