---
title: "Create Notification"
method: POST
path: "/notification"
tags: ["Notifications"]
---

# Create Notification

`POST /notification`

Create a new notification for a user

## Request body

- object
  - `title` string, nullable
  - `message` string, nullable
  - `type` string, required
  - `eventData` object, nullable
  - `relatedEntityId` string
  - `relatedEntityType` string

## Response `200`

Notification created successfully

- object
  - `id` string, required
  - `userId` string, required
  - `title` string, nullable, required
  - `content` string, nullable, required
  - `type` 'info' | 'task_created' | 'workspace_created' | 'task_status_changed' | 'task_assignee_changed' | 'time_entry_created' | 'due_date_reminder' | 'task_overdue' | 'task_mention', required
  - `eventData` object, nullable, required
  - `isRead` boolean
  - `resourceId` string
  - `resourceType` 'task' | 'workspace'
  - `createdAt` string, date-time, required
  - `updatedAt` string, date-time, required

## Changes

- **2026-07-11** `32cece1ebe43` — 5 breaking, 4 warning, 7 info
  - request body became required
  - the response property `title` became nullable for the status `200`
  - the `createdAt` response's property type/format changed from ``/`` to `string`/`date-time` for status `200`
  - the `resourceType` response's property type/format changed from ``/`` to `string`/`` for status `200`
  - …12 more
- **2026-03-05** `c45ef22a736c` — 1 breaking, 1 info
  - the response property `content` became nullable for the status `200`
  - response property `content` list-of-types was narrowed by removing types `null` from media type `application/json` of response `200`
- **2026-03-04** `298877d6a79a` — 3 breaking
  - response property `content` list-of-types was widened by adding types `null` to media type `application/json` of response `200`
  - the `resourceType` response's property type/format changed from `string`/`` to ``/`` for status `200`
  - the `type` response's property type/format changed from `string`/`` to ``/`` for status `200`
- …earlier changes not shown

[Full history](https://skmtc.dev/usekaneo/apis/kaneo-api/changes/notification/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/32cece1ebe43/schema)
