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

# Returns the current user's notifications.




## OpenAPI

````yaml /openapi/chat-client.yaml get /me/notifications
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /me/notifications:
    get:
      tags:
        - me-notifications
      summary: |
        Returns the current user's notifications.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/UserNotification'
components:
  schemas:
    UserNotification:
      type: object
      properties:
        id:
          description: Internal UUID.
          type: string
        created_at:
          type: string
          format: date-time
          nullable: true
          example: '2023-01-01T12:00:00Z'
        read_at:
          type: string
          format: date-time
          nullable: true
          example: '2023-01-01T12:00:00Z'
        type:
          type: string
        important:
          type: boolean
        title:
          type: string
        summary:
          type: string
        context:
          type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````