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

# Submit a wholesale account application

> No password is collected here. Submitting returns a tracking ID (e.g. CRA-2658190) — the application goes under review, and an email with a set-password code is sent once an admin approves it.



## OpenAPI

````yaml /openapi/user-service.json post /v1/wholesale/apply
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/apply:
    post:
      tags:
        - wholesale
      summary: Submit a wholesale account application
      description: >-
        No password is collected here. Submitting returns a tracking ID (e.g.
        CRA-2658190) — the application goes under review, and an email with a
        set-password code is sent once an admin approves it.
      operationId: WholesaleController_apply
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WholesaleApplicationBody'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    WholesaleApplicationBody:
      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: 5000
          description: Estimated monthly order value, low end (EUR)
        estimatedMonthlyOrderMax:
          type: number
          example: 10000
          description: Estimated monthly order value, high end (EUR)
        contactFullName:
          type: string
          example: Ngozi Balogun
        contactPhone:
          type: string
          example: '+2348012345678'
        contactEmail:
          type: string
          example: ngozi@greenvalleyfoods.com
      required:
        - businessName
        - businessAddress
        - state
        - country
        - registrationNumber
        - estimatedMonthlyOrderMin
        - estimatedMonthlyOrderMax
        - contactFullName
        - contactPhone
        - contactEmail

````