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

# Query User Registration Info



## OpenAPI

````yaml /CARDPLUS-API.json post /wallet/api/user/detailInfo
openapi: 3.0.3
info:
  description: Wallet API Documentation
  version: '2.0'
  title: Wallet API Documentation
servers:
  - url: http://access-wallet.test.ftrader.pro
    description: Test development server
security: []
tags:
  - name: General
    description: General common APIs
  - name: Address Management
    description: User address CRUD operations
  - name: Agency Management
    description: Agency-related operations including card application and asset management
  - name: Asset Management
    description: User asset list and asset transfer operations
  - name: Card Management
    description: >-
      Card operations including activation, locking, balance, top-up, transfers,
      and queries
  - name: Deposit
    description: Deposit and top-up from user assets to card
  - name: KYT
    description: Know Your Transaction check
  - name: User Management
    description: User registration, KYC, card application, and information queries
paths:
  /wallet/api/user/detailInfo:
    post:
      tags:
        - User Management
      summary: Query User Registration Info
      operationId: userDetailInfoUsingPOST
      parameters:
        - name: agencyCode
          in: query
          description: Agency code
          required: true
          schema:
            type: string
        - name: appId
          in: query
          description: App identifier
          required: true
          schema:
            type: string
        - name: appUserId
          in: query
          description: App user ID
          required: true
          schema:
            type: string
        - name: sign
          in: query
          description: Signature
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseUserRegisterInfoDTO'
components:
  schemas:
    ResponseUserRegisterInfoDTO:
      type: object
      required:
        - code
        - msg
      properties:
        code:
          type: integer
          format: int32
        data:
          $ref: '#/components/schemas/UserRegisterInfoDTO'
        msg:
          type: string
    UserRegisterInfoDTO:
      type: object
      required:
        - agencyCode
        - appId
        - appUserId
        - email
        - walletAccountType
      properties:
        agencyCode:
          type: string
          description: Agency code
        appId:
          type: string
          description: App identifier
        appUserId:
          type: string
          description: App user ID
        documentNo:
          type: string
          description: ID number
        documentType:
          type: string
          description: ID document type
        email:
          type: string
          example: example@gmail.com
          description: Email
        firstName:
          type: string
          description: First name
        lastName:
          type: string
          description: Last name
        mobile:
          type: string
          description: Mobile number
        nickname:
          type: string
          description: Nickname
        profilePhoto:
          type: string
          description: Profile photo
        regionCode:
          type: string
          description: Region code
        regionDesc:
          type: string
          description: Region description
        registerTime:
          type: string
          format: date-time
          description: Registration date
        walletAccountType:
          type: string
          description: Account type
          enum:
            - CORPORATE
            - STANDARD

````