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

# Update account: profile fields, push-notification toggle, and/or add delivery addresses — each key optional



## OpenAPI

````yaml /openapi/user-service.json patch /v1/users/me
openapi: 3.0.0
info:
  title: Asiko User Service
  description: Auth, JWT, TOTP 2FA, retail + trade account management
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: auth
    description: ''
  - name: users
    description: ''
  - name: addresses
    description: ''
paths:
  /v1/users/me:
    patch:
      tags:
        - users
      summary: >-
        Update account: profile fields, push-notification toggle, and/or add
        delivery addresses — each key optional
      operationId: UsersController_updateMe
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAccountBody'
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    UpdateAccountBody:
      type: object
      properties:
        userInfo:
          $ref: '#/components/schemas/UserInfoUpdateBody'
        deliveryAddress:
          type: array
          items:
            $ref: '#/components/schemas/DeliveryAddressInputBody'
        enablePushNotification:
          type: boolean
    UserInfoUpdateBody:
      type: object
      properties:
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
        phone:
          type: string
    DeliveryAddressInputBody:
      type: object
      properties:
        contactPhone:
          type: string
        homeAddress:
          type: string
        state:
          type: string
        city:
          type: string
        country:
          type: string
        isDefault:
          type: boolean
      required:
        - contactPhone
        - homeAddress
        - state
        - city
        - country
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````