Action 70:查询免费场次游戏记录
功能说明
- 查询单一代理在特定时间区段内的所有免费场次游戏记录,以 gType 区分游戏类型。
- 支援范围:老虎机(0)
- 开始时间与结束时间中,ss.sss(秒.毫秒)的值必须为 00.000。
- 每次查询时间范围最多为 5 分钟。
- 数据与传输量大时,建议每次查询范围不超过 1 分钟,以获得较佳效果。
- 此功能查询出来的数据是以该笔游戏纪录的
游戏时间
(gameDate)为准 - 提供 3 分钟前至 180 天内的免费场次游戏记录。例如,在 15:00:00 时查询五分钟,那资料范围则是 14:52:00.000 ~ 14:57:00.000 的信息。
参数
参数 | 格式 | 强制 | 说明 |
---|---|---|---|
action | Integer | Y | 70 |
ts | Long | Y | 当前系统时间 |
parent | String(50) | Y | 代理账号 |
startTime | String | Y | 查询区段起始时间僅符合(ISO-8601 中以下格式) yyyy-MM-ddTHH:mm:ss.sss+|-hh:mm |
endTime | String | Y | 查询区段结束时间僅符合(ISO-8601 中以下格式) yyyy-MM-ddTHH:mm:ss.sss+|-hh:mm |
gTypes | Integer Array | Y | 游戏类型 支援范围:老虎机(0) |
uid | String(50) | N | 玩家账号 |
Example
{
"action": 70,
"ts": 1710154494058,
"parent": "testag",
"startTime": "2024-07-22T04:05:00.000+01:00",
"endTime": "2024-07-22T04:05:00.000+01:00",
"gTypes": [0],
"uid":"testpl01" // Optional
}
返回结果
参数 | 格式 | 说明 |
---|---|---|
status | String(4) | 成功:0000 错误:参照附录 错误代码 查无资料:0000 |
data | JSON Array | 回传的数据组列于下列表中 |
err_text | String(255) | 错误讯息 |
免费场次游戏详细内容
参数 | 格式 | 说明 |
---|---|---|
historyId | String(100) | 游戏序号 参照附录 historyId 说明 |
uid | String(50) | 玩家账号 |
gType | String | 游戏类型 参照附录 游戏提供商 |
mtype | String | 机台类型 参照附录 游戏列表 (4.2) |
gameDate | String | 游戏时间(ISO-8601 中以下格式) yyyy-MM-ddTHH:mm:ss.sss+|-hh:mm |
denom | String | 投注面值 |
bet | String | 押注金额 |
win | String | 游戏赢分 |
currency | String(10) | 货币别 参照附录 货币代码 |
lastModifyTime | String | 最后修改时间(ISO-8601 中以下格式) yyyy-MM-ddTHH:mm:ss.sss+|-hh:mm |
eventId | String | 免费场次识别代号 |
eventName | String | 免费场次名称 |
eventBet | String | 免费场次设置投注 |
操作范例
// Http Request
http://{API_Address}/apiRequest.do?dc=xb&x=4x30pdhFGt07YgN1yJSAdb_Cma3VNC3FDgJZZIgZWUd-BOHHX7Bz-zMpNOm08tFOon2DMmxRZOBUy_elSkh1anVTug3fJAozNDM4B1kRqdC_4qwPrwWhFzlCkp3AM2W2QV5Vrfv2USKoPsOCECxp6tamrMJmpvZcE5s0Ry7aUzAFCkJAqMC8WxCHhXiCmQx0wKjfysoXR_v1yJAEl54H-g
// Http Response (success)
{
"status": "0000",
"data": [
{
"historyId": "5250229021202",
"uid": "testpl01",
"gameDate": "2024-07-17T16:00:00.000+01:00",
"bet": "10.0000",
"win": "0.0000",
"currency": "RB",
"lastModifyTime": "2024-07-17T16:00:00.000+01:00",
"eventId": "12686",
"eventName": "test event",
"eventBet": "10.0000",
"gType": "0",
"mtype": "14085",
"denom": "500"
}
]
}
// Http Response (failed)
1. 若有必要参数未给,例如:gTypes,则:
{
"status": "8000",
"err_text": "The parameter of input error, please check your parameter is correct or not. parameter:gTypes is required"
}
// Http Response (no data)
{
"status": "0000",
"data": []
}