POST api/v2/ClientApp/manage/account_bankcard_save
Request Information
URI Parameters
None.
Body Parameters
AccountBankcardSaveRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| wallet_account_id |
钱包账号ID |
integer |
Required |
| accountNo |
银行卡号 |
string |
Required |
| pin |
PIN码 |
string |
Required |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"wallet_account_id": 1,
"accountNo": "sample string 1",
"pin": "sample string 2",
"clientType": "sample string 3",
"clientVersion": "sample string 4"
}
Response Information
Resource Description
AccountBankcardSaveResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
| elapsed_time | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2",
"elapsed_time": 0.001
}