Seamless
單一錢包 API
功能项目
Action 16:免费场次派彩

Action 16:免费场次派彩

功能说明

  • 当免费场次派彩时呼叫该 API,通知客户派发游戏彩金。
  • 根据收到的内容更新玩家余额后,回传玩家最新余额。
  • 若收到请求且此笔请求已处理成功过,请回传 0000
  • 当呼叫该 API 失败时,JDB 将每分钟重送一次,直到回应 status 0000 或已重送达 1 个小时。
  • (可选)如需查询每局免费场次的游戏记录,可参考免费场次游戏记录(Action 17)
seamless wallet free spin reward flow chart

请求参数

参数格式说明
actionInteger16
tsLong当前系统时间
transferIdLong交易序号,无法关联至游戏纪录
eventIdLong免费场次序号
uidString(50)玩家账号
amountDouble要派彩給玩家的金额
currencyString(10)参照附录:货币代码
accumulatedTurnoverDouble累计押注
accumulatedWinDouble累计赢分

请求范例

{
  "action": 16,
  "ts": 1664522589182,
  "transferId": 251919,
  "eventId": 1565661550166,
  "uid": "testpl",
  "amount": 5000.0,
  "currency": "RB",
  "accumulatedTurnover": 10000.0,
  "accumulatedWin": 5000.0
}

返回参数

参数格式说明
statusString(4)成功:0000
若收到请求且该笔 transferId 曾经完成派彩,请回传 0000
其余错误代码视同交易失败,将再次重送
balanceDouble余额
err_textString(255)错误讯息

返回范例

{
  "status": "0000",
  "balance": 12345.67,
  "err_text": ""
}