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

# Register a new trade account (pending approval)



## OpenAPI

````yaml /openapi/user-service.json post /v1/auth/trade/register
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/auth/trade/register:
    post:
      tags:
        - auth
      summary: Register a new trade account (pending approval)
      operationId: AuthController_registerTrade
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TradeRegisterBody'
      responses:
        '201':
          description: ''
components:
  schemas:
    TradeRegisterBody:
      type: object
      properties:
        email:
          type: string
        password:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        phone:
          type: string
        referralCode:
          type: string
        businessName:
          type: string
        businessAddress:
          type: string
        vatNumber:
          type: string
        companyRegistration:
          type: string
      required:
        - email
        - password
        - firstName
        - lastName
        - phone
        - businessName
        - businessAddress

````