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

# List notifications

> Get every notification for the current user, read and unread.



## OpenAPI

````yaml /openapi.json get /notification
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:
    get:
      tags:
        - Notifications
      summary: List notifications
      description: Get every notification for the current user, read and unread.
      operationId: listNotifications
      responses:
        '200':
          description: List of notifications
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Notification'
        '401':
          description: Missing or invalid credentials
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)

````