Action 10:结算
功能说明
- 当游戏結算时呼叫该 API,通知该局游戏结果。
- 使用 amount 派彩后,回传玩家最新余额。
- 若收到请求且此笔请求已处理成功过,请回传
0000
。 - 当呼叫该 API 失败时,JDB 将每分钟重送一次,直到回应 status
0000
或已重送达 1 个小时。

请求参数
参数 | 格式 | 说明 |
---|---|---|
action | Integer | 10 |
ts | Long | 当前系统时间 |
transferId | Long | 交易序号,能关联到游戏记录 |
uid | String(50) | 玩家账号 |
currency | String(10) | 参照附录:货币代码 |
amount | Double | 要返还给玩家的金额(永远为正数) |
refTransferIds | Array of Long | 此次结算了哪些注单;对应至 Action 9 的 transferId |
gameRoundSeqNo | String(100) | 游戏局号 |
historyId | String(100) | 游戏序号 参照附录 historyId 说明 |
gType | Integer | 游戏类型,参照附录:游戏提供商 |
mType | Integer | 机台类型 |
reportDate | String(10) | 报表日期(dd-MM-yyyy) |
gameDate | String(19) | 游戏日期(dd-MM-yyyy HH:mm:ss) |
lastModifyTime | String(19) | 最后修改时间(dd-MM-yyyy HH:mm:ss) |
bet | Double | 押注金额 |
validBet | Double | 有效投注金额 |
win | Double | 游戏赢分 |
netWin | Double | 总输赢 |
tax | Double | 税 |
commission | Double | 回馈金 |
sessionNo | String(50) | 序号,登入每款游戏会获得不同值。当没使用 JDB 大厅时推荐使用。预设无此参数,如需要请洽业务人员 |
systemSessionId | String(150) | 系统阶段唯一码,每次 action 21 取得游戏连结会获得不同值。 游戏类型支援范围:街机 (9)、棋牌 (18) 预设无此参数,如需要请洽业务人员 |
roundClosed | Boolean | 当局是否结束。true:当局已结束 false:当局未结束,后续仍有action10。 |
接续上面表格,以下将依 gType 分类,列出对应的参数表格
请求范例
{
"action": 10,
"ts": 1700029145035,
"transferId": 272017,
"uid": "john",
"currency": "XX",
"amount": 0.1,
"refTransferIds": [272016],
"gameRoundSeqNo": "5250228497993",
"historyId": "1944036707",
"reportDate": "15-11-2023",
"gameDate": "15-11-2023 14:18:57",
"lastModifyTime": "15-11-2023 14:19:04",
"win": 0.1,
"bet": 0.2,
"validBet": 0.2,
"netWin": -0.1,
"tax": 0,
"commission": 0,
"gType": 58,
"mType": 58016,
"roundClosed": true
}
返回参数
参数 | 格式 | 说明 |
---|---|---|
status | String(4) | 成功:0000其余错误代码视同交易失败,将再次重送 |
balance | String | 余额 |
err_text | String(255) | 错误讯息 |
返回范例
{
"status": "0000",
"balance": "12345.67",
"err_text": ""
}