POST api/v2/ClientApp/manage/refreshWalletAccountStatus
Request Information
URI Parameters
None.
Body Parameters
RefreshWalletAccountStatusRequest| 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
RefreshWalletAccountStatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| data |
账号信息 |
WalletAccountInfo |
None. |
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
| elapsed_time | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"authStatus": "sample string 1",
"pinStatus": "sample string 2",
"phoneNo": "sample string 3",
"upiAccountList": [
"sample string 1",
"sample string 2"
],
"message": "sample string 4"
},
"code": 1,
"msg": "sample string 2",
"elapsed_time": 0.008
}