Skip to main content

QueryWalletHistoryResponse

successbooleanrequired

Request validation is successful or not. It will be set to true when the HTTP status is 200.

codeintegerrequired

Request status code. It will be set to 1 when the request is processed successfully. When unsuccessful, there will be an error code.

msgstringrequired

Request status message. It will be set to Success when the request is processed successfully. When unsuccessful, there will be an error message.

timenumberrequired

Current unix timestamp.

data object[]required
  • Array [
  • transactionTimenumberrequired

    Transaction time

    typeWalletTransactionTypeEnumrequired

    Possible values: [DEPOSIT, WITHDRAW, CONVERT, SEND, RECEIVE, REFERRAL, PAID, GET_PAID, LOTTERY_FREEZE, LOTTERY_UNFREEZE, C2C_FREEZE, C2C_UNFREEZE, C2C_TRANSFER_IN, C2C_TRANSFER_OUT, LAUNCHPAD_FREEZE, LAUNCHPAD_UNFREEZE, LAUNCHPAD_DEDUCTED, LAUNCHPAD_DISTRIBUTED, LAUNCHPAD_CREDIT, LAUNCHPAD_FUND, EARN_PROFIT_SHARING, SUB_ACCOUNT_TRANSFER_IN, SUB_ACCOUNT_TRANSFER_OUT, TRANSFER_OUT, TRANSFER_IN, INVEST, REDEEM, LIQUIDATION, REALIZED_PNL, FUNDING, ASSET_CONVERSION, FUTURES_FUNDING_RECOVER_LOSS_FROM_POSITION_ENTRY_PRICE]

    walletNamestringrequired

    Wallet name

    assetstringrequired

    Asset

    netAmountstringrequired

    Net amount

    amountstring

    Amount

    transactionRefstring

    Transaction reference

    statusWalletTransactionStatusEnumrequired

    Possible values: [PENDING, PROCESSING, COMPLETED, CANCELLED]

    descriptionstring

    Description

    feestring

    Fees

    cryptoNetworkstring

    Crypto network

    toAddressstring

    The target address of the blockchain transaction

    confirmTimesstring

    Blockchain transaction confirmation times

    txIdstring

    Blockchain transaction ID

  • ]
  • QueryWalletHistoryResponse
    {
    "data": [
    {
    "transactionTime": 0,
    "type": "DEPOSIT",
    "walletName": "string",
    "asset": "string",
    "netAmount": "string",
    "amount": "string",
    "transactionRef": "string",
    "status": "PENDING",
    "description": "string",
    "fee": "string",
    "cryptoNetwork": "string",
    "toAddress": "string",
    "confirmTimes": "string",
    "txId": "string"
    }
    ],
    "success": true,
    "code": 0,
    "msg": "string",
    "time": 0
    }