> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corebanq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get notification settings

> Retrieve user notification preferences



## OpenAPI

````yaml get /v1/profile/notifications
openapi: 3.0.0
info:
  title: Profile API
  version: 1.0.0
  description: API for managing user profiles and profile trays
servers: []
security:
  - bearerAuth: []
tags:
  - name: Profile
    description: Profile management operations
paths:
  /v1/profile/notifications:
    get:
      tags:
        - Profile
      summary: Get notification settings
      description: Retrieve user notification preferences
      responses:
        '200':
          description: Notification settings retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotificationSettings'
              example:
                email_notifications: true
                push_notifications: false
                categories:
                  security: true
                  marketing: false
                  updates: true
components:
  schemas:
    NotificationSettings:
      type: object
      properties:
        email_notifications:
          type: boolean
          description: Enable email notifications
        push_notifications:
          type: boolean
          description: Enable push notifications
        categories:
          type: object
          properties:
            security:
              type: boolean
              description: Security alerts
            marketing:
              type: boolean
              description: Marketing communications
            updates:
              type: boolean
              description: Product updates
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````