Skip to main content
POST
/
wallet
/
api
/
cardList
/
allByUser
查询代理下所有卡信息-按用户分组
curl --request POST \
  --url http://localhost/wallet/api/cardList/allByUser
{
  "code": 123,
  "msg": "<string>",
  "data": {
    "dataTotal": 123,
    "haveNext": true,
    "list": [
      {
        "agencyCode": "<string>",
        "appId": "<string>",
        "appUserId": "<string>",
        "email": "[email protected]",
        "walletAccountType": "CORPORATE",
        "cardList": [
          {
            "activeAmount": 123,
            "activeTime": "2023-11-07T05:31:56Z",
            "balance": 123,
            "cardAssetId": 123,
            "cardHolder": "<string>",
            "cardId": 123,
            "cardNumber": "<string>",
            "cardUUID": "<string>",
            "categoryId": 123,
            "channel": "<string>",
            "currency": "<string>",
            "currencyIcon": "<string>",
            "currencySymbol": "<string>",
            "dailyAtmLimit": 123,
            "dailyConsumptionLimit": 123,
            "decimalPlaces": 123,
            "expireMonth": "<string>",
            "expireYear": "<string>",
            "feature": "<string>",
            "feeMonth": 123,
            "last4": "<string>",
            "level": 123,
            "marginAmount": 123,
            "marginAssetId": 123,
            "name": "<string>",
            "network": "<string>",
            "rechargeFeeRate": 123,
            "status": "ACTIVE",
            "styleConfig": "<string>",
            "type": "<string>",
            "userId": 123
          }
        ],
        "documentNo": "<string>",
        "documentType": "<string>",
        "firstName": "<string>",
        "kycStatus": "<string>",
        "lastName": "<string>",
        "mobile": "<string>",
        "nickname": "<string>",
        "profilePhoto": "<string>",
        "regionCode": "<string>",
        "regionDesc": "<string>",
        "registerTime": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Query Parameters

agencyCode
string
required

代理商码

appId
string
required

App标识

appUserId
string
required

appUserId,如果传值则查询指定id用户的卡列表

pageNo
integer<int32>
required

第几页

pageSize
integer<int32>
required

每页多少条

sign
string
required

签名

userEmail
string
required

email,如果传值则查询指定email用户的卡列表

Response

200 - application/json

OK

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