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

# Mark All As Read

> Mark all of the current user's notifications as read.



## OpenAPI

````yaml /api-reference/openapi.json post /api/notifications/read-all
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/notifications/read-all:
    post:
      tags:
        - notifications
      summary: Mark All As Read
      description: Mark all of the current user's notifications as read.
      operationId: mark_all_as_read_api_notifications_read_all_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Mark All As Read Api Notifications Read All Post
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Mark As Read](/api-reference/notifications/mark-as-read.md)
- [Read Pin](/api-reference/data-lake/read-pin.md)
- [Read Agent](/api-reference/agents/read-agent.md)
- [Verify Email](/api-reference/auth/verify-email.md)
- [Set Active Shared Mailbox](/api-reference/integrations/set-active-shared-mailbox.md)
