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

# User Account Asset List



## OpenAPI

````yaml /CARDPLUS-API.json post /wallet/api/asset/list
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/asset/list:
    post:
      tags:
        - Asset Management
      summary: User Account Asset List
      operationId: assetListUsingPOST
      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/ResponseListApiAssetDTO'
components:
  schemas:
    ResponseListApiAssetDTO:
      type: object
      required:
        - code
        - msg
      properties:
        code:
          type: integer
          format: int32
        data:
          type: array
          items:
            $ref: '#/components/schemas/ApiAssetDTO'
        msg:
          type: string
    ApiAssetDTO:
      type: object
      properties:
        agencyCode:
          type: string
          description: Agency code
        appId:
          type: string
          description: App identifier
        appUserId:
          type: string
          description: App user ID
        assetId:
          type: integer
          format: int64
          description: Asset ID
        assetName:
          type: string
          description: Asset name
        balance:
          type: number
          description: Balance
        currency:
          type: string
          description: Currency
        decimalPlaces:
          type: integer
          format: int32
          description: Decimal places
        defaultAsset:
          type: integer
          format: int32
          description: Whether this is the default asset
        icon:
          type: string
          description: Icon
        symbol:
          type: string
          description: Unit symbol
        type:
          type: string
          description: Asset type
          enum:
            - CARD_MARGIN
            - CORPORATE_COMMISSION
            - CORPORATE_MARGIN
            - CREDIT_CARD
            - CRYPTO_CURRENCY
            - INVEST
            - LEGAL_CURRENCY

````