新增账号

新增账号接口

/api/v1.0/account

请求方式:GET

参数 必填 类型 描述
action Y string 操作 add=新增/修改
account Y string 券商账号
company Y string 券商名称
password Y string 券商账号登录密码
tx_password N string 券商账号通讯密码

请求实列:

http://127.0.0.1:9999/api/v1.0/account?action=add&account=12345678&company=平安证券&password=123456&tx_password=&sign=key

返回数据:

{
	"msg": "添加成功",
	"code": "0",
	"success": "1",
	"data": null
}

?>