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

# Test notification settings

> Send test notification to verify settings



## OpenAPI

````yaml api-docs/archived/notifications.json post /v1/regions/global/notifications/settings/test
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/settings/test:
    post:
      tags:
        - Settings
      summary: Test notification settings
      description: Send test notification to verify settings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                channel:
                  type: string
                  enum:
                    - inApp
                    - email
                    - slack
                  description: Channel to test
              required:
                - channel
      responses:
        '200':
          description: Test notification sent
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      channel:
                        type: string
                      sent:
                        type: boolean
                  meta:
                    type: object
components:
  securitySchemes:
    sessionAuth:
      type: apiKey
      in: cookie
      name: session
      description: Session-based authentication via HTTP-only cookie

````