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

# Delete notification

> Delete notification from inbox



## OpenAPI

````yaml api-docs/archived/notifications.json delete /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}:
    delete:
      tags:
        - Inbox
      summary: Delete notification
      description: Delete notification from inbox
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Notification deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                  meta:
                    type: object
components:
  securitySchemes:
    sessionAuth:
      type: apiKey
      in: cookie
      name: session
      description: Session-based authentication via HTTP-only cookie

````