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

# Update notification settings

> Update user notification preferences



## OpenAPI

````yaml put /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:
    put:
      tags:
        - Profile
      summary: Update notification settings
      description: Update user notification preferences
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationSettings'
      responses:
        '200':
          description: Notification settings updated successfully
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

````