## 忘記交易密碼
>接口參數說明
~~~[api]
post:/account/forget-transaction-password
*string:newPassword#新密碼
*string:rePassword#確認密碼
*string:code#驗證碼
*string:type#EMAIL,MOBILE
<<<
success
{
"status": 0,
"msg": "success",
"timestamp": "20181221105857452"
}
<<<
error
{
"status": 1013,
"msg": "Insufficient password strength",
"timestamp": "20181221112918250"
}
~~~
>接口請求示例
~~~
{
"newPassword":"aa123456",
"rePassword":"aa123456",
"code":"151554"
"type":"MOBILE",
}
~~~