## 設置交易密碼
>接口參數說明
~~~[api]
post:/account/setting-transaction-password
*string:password#密碼
*string:rePassword#確認密碼
<<<
success
{
"status": 0,
"msg": "success",
"timestamp": "20181221105857452"
}
<<<
error
{
"status": 1013,
"msg": "Insufficient password strength",
"timestamp": "20181221112918250"
}
~~~
>接口請求示例
~~~
{
"password": "a123456",
"rePassword": "a123456"
}
~~~