> ## Documentation Index
> Fetch the complete documentation index at: https://team.k0labs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Mark all as read

> Mark all notifications as read



## OpenAPI

````yaml api-docs/app-team/notifications.json post /api/v1/notifications/inbox/read-all
openapi: 3.1.1
info:
  title: Notification Service API
  version: 1.0.0
  description: >-
    Notification Service API for real-time notifications via Server-Sent Events
    (SSE) for Arc and Atlas applications
servers:
  - url: http://localhost:4055
    description: Local Development
security: []
paths:
  /api/v1/notifications/inbox/read-all:
    post:
      tags:
        - Inbox
      summary: Mark all as read
      description: Mark all notifications as read
      parameters:
        - schema:
            type: string
            enum:
              - arc
              - atlas
            description: >-
              Explicit platform identifier. If provided, overrides
              auto-detection based on session context.
          required: false
          description: >-
            Explicit platform identifier. If provided, overrides auto-detection
            based on session context.
          name: platform
          in: query
      responses:
        '200':
          description: All marked as read
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      markedCount:
                        type: number
                    required:
                      - markedCount
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - data
                  - meta
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - error
                  - meta
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - error
                  - meta

````