此功能允许运营商根据 ts_code 查询玩家們之前的余额操作。
请求方式( Host-> BeSoft):post
编码方式:application/x-www-form-urlencoded
Besoft响应的数据格式是: application/json
{besoftapi}/api/game/getbalanceoperationLog
| 名称 | 类型 | 必要 |描述| |:--------:|:------------:|:--------:|:------------------:| | cert | String | Y |安全代码| | user | String | Y |用户ID| | extension1 | String | Y |代理帐号|
表单数据
Content-Type: application/x-www-form-urlencoded
cert:v8VMKKzlPpD0te4rX99Hgefs3PQrBFWJKiuUqg6Y user:test1 extension1:adminweb
| 名称 | 类型 | 必要 | |:--------:|:-----:|:--------:| | status | int32 |状态代码 | | totalsize | int32 | 本次查询总笔数 | | result | string | 玩家账号 | | result.user | double | 1-是向玩家转入分数,2-是玩家转出分数 | | result.createdate | Int64 | 资料新增时间戳(毫秒) | | result.extension1 | string | 代理帐号 |
ts_code not found Result( 查詢不到ts_code 的结果)
{"status":1, "totalsize": 0,"result":[]}
## 成功的结果
{
"status": 1,
"totalsize": 2,
"result": [
{
"user": "test1",
"extension1": "admin",
"sellbuy": "2",
"tradescore": "10.00",
"createdate": 1558980270793
},
{
"user": "test1",
"extension1": "admin",
"sellbuy": "1",
"tradescore": "10.00",
"createdate": 1558980270793
}
]
}
注释:当 status=1数据为成功,否则为失败
## 失败的结果
{
"status": 0
}