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



## OpenAPI

````yaml api-docs/archived/notifications.json get /v1/regions/global/notifications/inbox/{id}
openapi: 3.1.1
info:
  title: Notifications API
  version: 1.0.0
  description: >-
    Notifications API for the k0rdent Enterprise platform. Provides in-app
    notifications, email, and notification settings management. All endpoints
    use path-based routing via the API Gateway with the pattern
    /v1/notifications/...
  contact:
    name: k0rdent Enterprise API Support
    email: api-support@example.com
    url: https://support.example.com
  license:
    name: Proprietary
    url: https://k0rdent.example.com/license
servers:
  - url: ''
    description: For documentation only
  - url: https://api.example.com
    description: Arc API Base URL
  - url: https://api.internal.example.com
    description: Atlas API Base URL
  - url: http://localhost:{port}
    description: Local Development
    variables:
      port:
        default: '4020'
        description: Notifications service port
security:
  - sessionAuth: []
tags:
  - name: Notifications
    description: Notification creation (system services)
  - name: Inbox
    description: User notification inbox operations
  - name: Settings
    description: Notification preference management
paths:
  /v1/regions/global/notifications/inbox/{id}:
    get:
      tags:
        - Inbox
      summary: Get notification
      description: Get single notification by ID
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Notification details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/Notification'
                  meta:
                    type: object
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Notification:
      type: object
      description: Notification entity
      properties:
        id:
          type: string
          description: Notification identifier
        category:
          type: string
          enum:
            - system
            - cluster
            - server
            - billing
            - security
            - invitations
          description: Notification category
        priority:
          type: string
          enum:
            - low
            - normal
            - high
            - urgent
          description: Notification priority
        title:
          type: string
          description: Notification title
        message:
          type: string
          description: Notification message
        resourceType:
          type: string
          nullable: true
          description: Related resource type
        resourceId:
          type: string
          nullable: true
          description: Related resource identifier
        actionUrl:
          type: string
          nullable: true
          description: Primary action URL (simplified single URL for inbox list views)
        clickActionUrl:
          type: string
          nullable: true
          description: URL to navigate when notification is clicked
        primaryActionLabel:
          type: string
          nullable: true
          description: Primary action button label
        primaryActionUrl:
          type: string
          nullable: true
          description: Primary action button URL
        secondaryActionLabel:
          type: string
          nullable: true
          description: Secondary action button label
        secondaryActionUrl:
          type: string
          nullable: true
          description: Secondary action button URL
        read:
          type: boolean
          description: Read status
        readAt:
          type: string
          format: date-time
          nullable: true
          description: When notification was read
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
      required:
        - id
        - category
        - priority
        - title
        - message
        - read
        - createdAt
    ErrorResponse:
      type: object
      description: Standard error response following RFC 7807
      properties:
        success:
          type: boolean
          enum:
            - false
          description: Success indicator
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code
              examples:
                - VALIDATION_ERROR
                - UNAUTHORIZED
                - FORBIDDEN
                - NOT_FOUND
                - CONFLICT
                - RATE_LIMITED
                - INTERNAL_ERROR
                - SERVICE_UNAVAILABLE
            message:
              type: string
              description: Human-readable error message
            details:
              type: object
              nullable: true
              description: Additional error details
          required:
            - code
            - message
        meta:
          type: object
          description: Response metadata
          properties:
            requestId:
              type: string
              description: Unique request identifier
            timestamp:
              type: string
              format: date-time
              description: Response timestamp
      required:
        - success
        - error
  responses:
    NotFound:
      description: Not Found - The requested resource does not exist
      content:
        application/json:
          schema:
            allOf:
              - $ref: '#/components/schemas/ErrorResponse'
          examples:
            resourceNotFound:
              summary: Resource not found
              value:
                success: false
                error:
                  code: NOT_FOUND
                  message: The requested resource was not found
                meta:
                  requestId: req_abc123
                  timestamp: '2024-01-15T10:30:00Z'
  securitySchemes:
    sessionAuth:
      type: apiKey
      in: cookie
      name: session
      description: Session-based authentication via HTTP-only cookie

````