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

# Update User Profile

> Update current user's profile

Allows updating display name, timezone, language, and preferences



## OpenAPI

````yaml /openapi.json patch /v1/users/me
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/users/me:
    patch:
      tags:
        - users
      summary: Update User Profile
      description: |-
        Update current user's profile

        Allows updating display name, timezone, language, and preferences
      operationId: update_user_profile_v1_users_me_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateProfileRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UpdateProfileRequest:
      properties:
        display_name:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Display Name
          description: New display name.
        timezone:
          anyOf:
            - type: string
              maxLength: 100
            - type: 'null'
          title: Timezone
          description: IANA timezone (e.g., 'America/New_York').
        language:
          anyOf:
            - type: string
              maxLength: 10
            - type: 'null'
          title: Language
          description: Preferred language code (e.g., 'en', 'es').
        preferences:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Preferences
          description: >-
            User preferences to update (e.g., {approval_mode: 'ask_every_time',
            model_tier: 'pro'}).
      type: object
      title: UpdateProfileRequest
      description: Update user profile fields.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````