> ## 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 business information (each field optional)



## OpenAPI

````yaml /openapi/user-service.json patch /v1/wholesale/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/wholesale/me:
    patch:
      tags:
        - wholesale
      summary: Update business information (each field optional)
      operationId: WholesaleController_updateMe
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBusinessInfoBody'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
      security:
        - bearer: []
components:
  schemas:
    UpdateBusinessInfoBody:
      type: object
      properties:
        businessName:
          type: string
          example: Green Valley Foods Ltd
        businessAddress:
          type: string
          example: 14 Trade Avenue, Ikeja
        state:
          type: string
          example: Lagos
        country:
          type: string
          example: Nigeria
        registrationNumber:
          type: string
          example: RC-1234567
        estimatedMonthlyOrderMin:
          type: number
          example: 6000
        estimatedMonthlyOrderMax:
          type: number
          example: 12000
        contactFullName:
          type: string
          example: Ngozi Balogun
        contactPhone:
          type: string
          example: '+2348012345678'
        contactEmail:
          type: string
          example: ngozi@greenvalleyfoods.com
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````