---
title: "Update notification status"
method: PATCH
path: "/notifications/{notificationId}/status"
tags: ["Notifications"]
---

# Update notification status

`PATCH /notifications/{notificationId}/status`

Update the status of a specific notification.

## Path parameters

- `notificationId` string, uuid, required — The ID of the notification to update

## Request body

- object
  - `status` 'unread' | 'read' | 'archived', required — The new status for the notification

## Response `200`

Notification status updated successfully.

- NotificationResponseSchema
  - `data` object, required — The updated notification
    - `id` string, uuid, required — Unique identifier of the notification
    - `createdAt` string, required — ISO timestamp when the notification was created
    - `teamId` string, uuid, required — Unique identifier of the team
    - `userId` string, uuid, nullable, required — Unique identifier of the user (if applicable)
    - `type` string, required — Type of notification
    - `priority` integer, required — Priority level of the notification (1-3 = user notifications, 4-10 = system)
    - `source` 'system' | 'user', required — Source of the notification
    - `status` 'unread' | 'read' | 'archived', required — Current status of the notification
    - `metadata` object, required — Additional metadata for the notification
    - `lastUsedAt` string, nullable, required — ISO timestamp when the notification was last used by the system

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/midday-ai/apis/midday-api.md) · [All operations](https://skmtc.net/midday-ai/apis/midday-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midday-ai/midday-api/versions/c0df9243c1b0/schema)
