Skip to main content
POST
/
wallet
/
api
/
user
/
assetFlow
查询用户资产流水
curl --request POST \
  --url http://localhost/wallet/api/user/assetFlow
{
  "code": 123,
  "msg": "<string>",
  "data": {
    "dataTotal": 123,
    "haveNext": true,
    "list": [
      {
        "appId": "<string>",
        "appUserId": "<string>",
        "amount": 123,
        "assetId": 123,
        "assetName": "<string>",
        "decimalPlaces": 123,
        "desc": "<string>",
        "flowNo": "<string>",
        "intent": "<string>",
        "status": "CREATED",
        "time": "2023-11-07T05:31:56Z",
        "transRemark": "<string>"
      }
    ]
  }
}

Query Parameters

agencyCode
string
required

代理商码

appId
string
required

App标识

appUserId
string
required

App用户ID

assetId
integer<int64>
required

资产ID

pageNo
integer<int32>
default:1
required

第几页

pageSize
integer<int32>
default:20
required

每页多少条

sign
string
required

签名

Response

200 - application/json

OK

code
integer<int32>
required
msg
string
required
data
AppPage«ApiUserAssetFlowDTO» · object