POST api/v2/ClientApp/manage/account_bankcard_list
Request Information
URI Parameters
None.
Body Parameters
AccountBankcardListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| wallet_account_id |
钱包账号ID |
integer |
Required |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"wallet_account_id": 1,
"clientType": "sample string 1",
"clientVersion": "sample string 2"
}
Response Information
Resource Description
AccountBankcardListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| data |
账号信息 |
Collection of WalletAccountBankCardInfo |
None. |
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
| elapsed_time | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": [
{
"account_bankcard_id": 1,
"account_id": 2,
"accountNo": "sample string 3",
"accountName": "sample string 4",
"pin": "sample string 5",
"pinStatus": "sample string 6"
},
{
"account_bankcard_id": 1,
"account_id": 2,
"accountNo": "sample string 3",
"accountName": "sample string 4",
"pin": "sample string 5",
"pinStatus": "sample string 6"
}
],
"code": 1,
"msg": "sample string 2",
"elapsed_time": 0.005
}