## 修改賬戶密碼
>接口參數說明
~~~[api]
post:/account/change-password
*string:oldPassword#原始密碼
*string:newPassword#新密碼
*string:rePassword#確認密碼
*string:type#登陸密碼:login_password, 交易密碼:transaction_password
<<<
success
{
"status": 0,
"msg": "success",
"timestamp": "20181221105857452"
}
<<<
error
{
"status": 1013,
"msg": "Insufficient password strength",
"timestamp": "20181221112918250"
}
~~~
>接口請求示例
~~~
{
"oldPassword": "a123456",
"newPassword": "aa123456",
"rePassword": "aa123456",
"type": "login_password"
}
~~~