POST api/v2/ClientApp/manage/getWalletTypeInfo
✅ 获取钱包类型详情 1. 新绑定钱包,选择钱包后 进入绑定页面时 调用 2. 选择已绑定钱包,打开钱包详情页时 调用
Request Information
URI Parameters
None.
Body Parameters
GetWalletTypeInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| wallet_type_id |
钱包类型ID |
integer |
None. |
| wallet_account_id |
钱包账号ID |
integer |
None. |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"wallet_type_id": 1,
"wallet_account_id": 2,
"clientType": "sample string 3",
"clientVersion": "sample string 4"
}
Response Information
Resource Description
GetWalletTypeInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| data |
账号信息 |
WalletTypeInfo |
None. |
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
| elapsed_time | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"wallet_type_id": 1,
"type": "sample string 2",
"name": "sample string 3",
"icon": "sample string 4",
"operate_html": "sample string 5",
"wallet_package_status": 6
},
"code": 1,
"msg": "sample string 2",
"elapsed_time": 0.005
}