POST api/ClientApp/trans/wallet_list
[已完成] 取款/提现 钱包列表
Request Information
URI Parameters
None.
Body Parameters
WalletListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"clientType": "sample string 1",
"clientVersion": "sample string 2"
}
Response Information
Resource Description
WalletListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| walletList |
钱包列表 |
Collection of WalletInfo |
Required |
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"walletList": [
{
"user_wallet_id": 1,
"user_id": 2,
"tokenAbbr": "sample string 3",
"tokenAddress": "sample string 4",
"tokenType": "sample string 5",
"tokenAlias": "sample string 6"
},
{
"user_wallet_id": 1,
"user_id": 2,
"tokenAbbr": "sample string 3",
"tokenAddress": "sample string 4",
"tokenType": "sample string 5",
"tokenAlias": "sample string 6"
}
],
"code": 1,
"msg": "sample string 2"
}