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

# Get notification status counts



## OpenAPI

````yaml get /v1/notifications/count
openapi: 3.0.0
info:
  title: Notification APIs Specification
  description: Section for description
  version: '1.0'
  contact: {}
servers:
  - url: https://staging.api.us.aptlydone.com
  - url: https://staging.api.us.aptlydone.com/notification
  - url: https://api.us.aptlydone.com
  - url: https://api.us.aptlydone.com/notification
security: []
tags: []
paths:
  /v1/notifications/count:
    get:
      tags:
        - notifications
      summary: Get notification status counts
      operationId: NotificationController_getNotificationCount_v1
      parameters:
        - name: tenantId
          required: false
          in: query
          description: >-
            Tenant ID to filter notifications (optional, defaults to user active
            tenant)
          schema:
            format: uuid
            example: 123e4567-e89b-12d3-a456-426614174000
            type: string
        - name: timePeriod
          required: false
          in: query
          description: Filter by time period (1m, 3m, 6m, all)
          schema:
            enum:
              - 1m
              - 3m
              - 6m
              - all
            type: string
      responses:
        '200':
          description: Notification counts retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationCountResponseDtoResponse'
      security:
        - accessToken: []
components:
  schemas:
    NotificationCountResponseDtoResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP Status code
          example: 200
        timestamp:
          type: string
          description: Timestamp of the response
          example: '2026-01-12T09:08:08.140Z'
        message:
          type: string
          description: Response message
          example: Success
        data:
          description: Response data
          allOf:
            - $ref: '#/components/schemas/NotificationCountResponseDto'
      required:
        - statusCode
        - timestamp
        - message
        - data
    NotificationCountResponseDto:
      type: object
      properties:
        unread:
          type: number
          description: Number of unread notifications
          example: 5
        read:
          type: number
          description: Number of read notifications
          example: 10
        total:
          type: number
          description: Total number of notifications
          example: 15
        timePeriod:
          enum:
            - 1m
            - 3m
            - 6m
            - all
          type: string
          description: Time period for which counts were retrieved
          example: 1m
      required:
        - unread
        - read
        - total
        - timePeriod
  securitySchemes:
    accessToken:
      scheme: bearer
      bearerFormat: JWT
      type: http

````