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

> Get user's notification preferences



## OpenAPI

````yaml api-docs/archived/notifications.json get /v1/regions/global/notifications/settings
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:
    get:
      tags:
        - Settings
      summary: Get notification settings
      description: Get user's notification preferences
      responses:
        '200':
          description: Notification settings
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    $ref: '#/components/schemas/NotificationSettings'
                  meta:
                    type: object
components:
  schemas:
    NotificationSettings:
      type: object
      description: User notification settings
      properties:
        channels:
          type: object
          properties:
            inApp:
              type: object
              properties:
                enabled:
                  type: boolean
            email:
              type: object
              properties:
                enabled:
                  type: boolean
                address:
                  type: string
                  format: email
                digestFrequency:
                  type: string
                  enum:
                    - realtime
                    - daily
                    - weekly
            slack:
              type: object
              properties:
                enabled:
                  type: boolean
                webhookUrl:
                  type: string
                  nullable: true
                channel:
                  type: string
                  nullable: true
        subscriptions:
          type: object
          description: Per-event type notification preferences
          additionalProperties:
            type: object
            properties:
              inApp:
                type: boolean
              email:
                type: boolean
              slack:
                type: boolean
  securitySchemes:
    sessionAuth:
      type: apiKey
      in: cookie
      name: session
      description: Session-based authentication via HTTP-only cookie

````