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

> Update user profile settings



## OpenAPI

````yaml put /v1/profile/settings
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/settings:
    put:
      tags:
        - Profile
      summary: Update profile settings
      description: Update user profile settings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProfileSettings'
      responses:
        '200':
          description: Profile settings updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileSettings'
components:
  schemas:
    UpdateProfileSettings:
      type: object
      properties:
        language:
          type: string
          enum:
            - en
            - de
            - fr
            - it
        timezone:
          type: string
        notifications_enabled:
          type: boolean
        two_factor_enabled:
          type: boolean
    ProfileSettings:
      type: object
      properties:
        language:
          type: string
          enum:
            - en
            - de
            - fr
            - it
          description: Preferred language
        timezone:
          type: string
          description: User timezone
          example: Europe/Zurich
        notifications_enabled:
          type: boolean
          description: Whether notifications are enabled
        two_factor_enabled:
          type: boolean
          description: Whether 2FA is enabled
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````