Skip to Content
转帐钱包文件JDB 平台 API报表相关Action 79:查询打赏记录

Action 79:查询打赏记录

功能说明

  • 查询单一代理在特定时间区段内的所有打赏纪录。
  • 开始时间与结束时间中,ss.sss(秒.毫秒)的值必须为 00.000
  • 每次查询时间范围最多为 5 分钟。
  • 查询结果依 打赏时间(tipDate)为准。
  • 提供 3 分钟前至 180 天内的打赏记录。例如,在 15:00:00 时查询五分钟,那资料范围则是 14:52:00.000 ~ 14:57:00.000 的信息。

参数

参数格式强制说明
actionIntegerY79
tsLongY当前系统时间
parentString(50)Y代理账号
startTimeStringY查询区段起始时间僅符合(ISO-8601 中以下格式)
yyyy-MM-ddTHH:mm:ss.sss+|-hh:mm
endTimeStringY查询区段结束时间僅符合(ISO-8601 中以下格式)
yyyy-MM-ddTHH:mm:ss.sss+|-hh:mm

Example

{ "action": 79, "ts": 1710154494058, "parent": "testag", "startTime": "2025-01-01T00:00:00.000+01:00", "endTime": "2025-01-01T00:05:00.000+01:00" }

返回结果

参数格式说明
statusString(4)成功:0000

错误:参照附录 错误代码
查无资料:0000
dataJSON Array回传的数据组列于下列表中
err_textString(255)错误讯息

打赏记录详细内容


参数格式说明
tipIdString(200)打赏序号
playerIdString(50)玩家账号
amountDouble打赏金额
currencyString(10)货币别
参照附录 货币代码
tipDateString打赏时间(ISO-8601 中以下格式)
yyyy-MM-ddTHH:mm:ss.sss+\|-hh:mm'
gTypeString游戏类型
参照附录 游戏提供商
mTypeString机台类型
参照附录 游戏列表

操作范例

// Http Request http://{API_Address}/apiRequest.do?dc=jb&x=4x30pdhFGt07YgN1yJSAdb_Cma3VNC3FDgJZZIgZWUd-BOHHX7Bz-zMpNOm08tFOon2DMmxRZOBUy_elSkh1anVTug3fJAozNDM4B1kRqdC_4qwPrwWhFzlCkp3AM2W2QV5Vrfv2USKoPsOCECxp6tamrMJmpvZcE5s0Ry7aUzAFCkJAqMC8WxCHhXiCmQx0wKjfysoXR_v1yJAEl54H-g // Http Response (success) { "status": "0000", "data": [ { "tipId": "fd5c966f-f2f9-4031-b0a1-b8d4b8513422", "playerId": "testpl01", "amount": "15.000000", "currency": "RB", "tipDate": "2025-06-23T12:06:39.566+08:00", "gType": "7", "mType": "210001" }, { "tipId": "fd5c966f-f2f9-4031-b0a1-b8d4b8513423", "playerId": "testpl01", "amount": "15.000000", "currency": "RB", "tipDate": "2025-06-23T12:06:39.566+08:00", "gType": "7", "mType": "210001" } ] }
Last updated on