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

# Get notification

> Get single notification by ID (Atlas platform)



## OpenAPI

````yaml api-docs/app-team/atlas.json get /v1/atlas/notifications/notifications/inbox/{id}
openapi: 3.1.1
info:
  title: Atlas API
  version: 1.0.0
  description: >-
    Atlas API supporting the k0rdent Enterprise Atlas console with internal
    infrastructure management (bare metal, k0rdent clusters, VMs) for cloud
    administrators, featuring a look and feel similar to Google Cloud and other
    major cloud providers
servers:
  - url: http://localhost:4010
    description: Local Development
security: []
paths:
  /v1/atlas/notifications/notifications/inbox/{id}:
    get:
      tags:
        - Inbox
      summary: Get notification
      description: Get single notification by ID (Atlas platform)
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Notification details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      category:
                        type: string
                      priority:
                        type: string
                      title:
                        type: string
                      message:
                        type: string
                      resourceType:
                        type: string
                        nullable: true
                      resourceId:
                        type: string
                        nullable: true
                      actionUrl:
                        type: string
                        nullable: true
                      clickActionUrl:
                        type: string
                        nullable: true
                      primaryActionLabel:
                        type: string
                        nullable: true
                      primaryActionUrl:
                        type: string
                        nullable: true
                      secondaryActionLabel:
                        type: string
                        nullable: true
                      secondaryActionUrl:
                        type: string
                        nullable: true
                      read:
                        type: boolean
                      readAt:
                        type: string
                        nullable: true
                      createdAt:
                        type: string
                    required:
                      - id
                      - category
                      - priority
                      - title
                      - message
                      - resourceType
                      - resourceId
                      - actionUrl
                      - clickActionUrl
                      - primaryActionLabel
                      - primaryActionUrl
                      - secondaryActionLabel
                      - secondaryActionUrl
                      - read
                      - readAt
                      - createdAt
                  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
        '404':
          description: Not Found
          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

````