> ## 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.

# Mark notification read

> Mark one notification as read. Scoped to the current user, so another user's notification is not found.



## OpenAPI

````yaml /openapi.json patch /notification/{id}/read
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:
  /notification/{id}/read:
    patch:
      tags:
        - Notifications
      summary: Mark notification read
      description: >-
        Mark one notification as read. Scoped to the current user, so another
        user's notification is not found.
      operationId: markNotificationAsRead
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: The updated notification
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notification'
        '401':
          description: Missing or invalid credentials
        '404':
          description: Notification not found
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    Notification:
      type: object
      properties:
        id:
          type: string
        userId:
          type: string
        title:
          type:
            - string
            - 'null'
        content:
          type:
            - string
            - 'null'
          description: >-
            Free-text body. Null for generated notifications, whose text the
            client renders from type and eventData.
        type:
          type: string
          description: >-
            One of: info, task_created, workspace_created, task_status_changed,
            task_assignee_changed, time_entry_created, due_date_reminder,
            task_overdue, task_mention, task_comment.
        eventData:
          description: >-
            Type-specific payload, e.g. { taskTitle, oldStatus, newStatus,
            projectId, workspaceId }.
        isRead:
          type:
            - boolean
            - 'null'
        resourceId:
          type:
            - string
            - 'null'
          description: The id of the task or workspace the notification points at.
        resourceType:
          type:
            - string
            - 'null'
          description: '`task` or `workspace`.'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      required:
        - id
        - userId
        - title
        - content
        - type
        - isRead
        - resourceId
        - resourceType
        - createdAt
        - updatedAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````