4.5 Event Settle (活动派彩) (由参与活动的运营商实现)
Description (描述)
This function is used to pay out those winnings received during events.
此功能用于对发送玩家在活动中得到的彩金
此功能并非必要,若运营商有举办活动需求再进行实现即可
URL (网址)
{callbackURL}/event_settle
Request Method
POST
Request Parameters (请求参数)
| Field (栏位) | Type (型态) | Required (必要) | Description (说明) |
|---|---|---|---|
| ts | String | Y | Current system time fixed 28 characters 当前系统时间 format 格式 yyyy-MM-dd'T'HH:mm:ss.SSSZ timezone 时区 GMT+8 |
| settles | Array of Objects | Y | |
| settleId | String | Y | Every settle's unique id <= 20 characters 每笔派彩的唯一单号 |
| eventId | String | Y | Event ID <= 60 characters 活动代码,为活动唯一值 |
| userId | String | Y | User ID <= 50 characters 玩家帐号 |
| amount | String | Y | How much did user win decimal places <= 4 玩家获得的活动派彩 |
| createTime | String | Y | Create time fixed 28 characters 交易建立时间 format 格式 yyyy-MM-dd'T'HH:mm:ss.SSSZ timezone 时区 GMT+8 |
{
"ts": "2024-06-01T23:00:00.000+0800",
"settles": [
{
"settleId": "EVT-20001",
"eventId": "EGR-10034-b562fb97b3fa4e3da9998d3214f224f0",
"userId": "hrgpl0001",
"amount": "10.0",
"createTime": "2024-06-01T11:33:49.839"
},
{
"settleId": "EVT-20002",
"eventId": "EGR-10034-fd0976d43d1049258ec5162d39b65eed",
"userId": "hrgpl0002",
"amount": "15.0",
"createTime": "2024-06-01T11:36:03.746"
}
]
}
