此 API 请求使运营商能够获取最近 30 天未完成的游戏列表。
UnfinishedGames() 请求
类型 | 输入 |
---|---|
HTTP 方法 | POST |
API URL | https://<API_BASE_URL> /games/unfinished-games/ |
标头 | "Content-Type": "application/json" |
POST 参数 | json 对象 eg: { |
参数 | 类型 | 描述 |
---|---|---|
api_key | 字符串 | 分配给每个前端的 API Key |
player_id | 字符串 | 运营商已知的玩家ID |
game_type | 字符串 | 游戏类型 (例如:slots, table_games, scratch_cards) |
amount_type | 字符串 | 游戏模式 例如: ‘real’ – 用真实货币游戏时 ‘freespins’ – 用promo_freespin玩游戏时 |
GameHistory() 响应 + 示例
响应将采用 JSON 格式。 类型:字典。
{ "game_history": {"freespins": {"headers": ["Game Name","Round ID","Amount Type","Num Spins","Spins left","Date Time"], "data": [ ["Test Game Name-1", 1001, "real", 10, 10, "2019-07-23 17:20:57"], ["Test Game Name-1", 1002, "real", 10, 1, "2019-07-23 17:20:57"], ["Test Game Name-2", 1003, "real", 5, 5, "2019-07-23 17:20:57"] ] } } , {“bonus_games”: {"headers": ["Game Name","Round ID","Amount type","Num Picks","Num of User Picks","Date Time"], "data": [ ["Test Game Name-1", 1201, "real", 5, 0, "2019-07-23 17:20:57"], ["Test Game Name-1", 1202, "real", 1, 0, "2019-07-23 17:20:57"], ["Test Game Name-2", 1303, "real", 4, 3, "2019-07-23 17:20:57"] ] } } }
响应对象中的对象/Key | 类型 | 描述 |
---|---|---|
game_history | JSON 对象 | Key game_history 包含 JSON 对象作为值。 包含 2 个 Key,‘freespins’ and ‘bonus_games’ |
game_history[‘freespins’] | JSON 对象 | JSON对象,带有两个Key,免费旋转和数据。 |
headers | JSON 列表 | 表头列表 |
Game Name | 字符串 | 游戏名称 |
Round ID | 整数 | 触发免费旋转的回合 ID |
Amount Type | 字符串 | 游戏模式 |
Num Spins | 整数 | 最初授予的旋转次数 |
Spins Left | 整数 | 剩余旋转次数 |
日期时间 | 字符串 | 游戏进行的服务器UTC时间 |
data | JSON 表中表 | 免费旋转表中表 |
game_history[‘bonus_games’] | JSON 对象 | JSON对象,带有两个Key,bonus_games和数据。 |
headers | JSON 列表 | 表头列表 |
Game Name | 字符串 | 游戏名称 |
Round ID | 整数 | 触发免费旋转的回合 |
Amount Type | 字符串 | 游戏模式 |
Num Picks | 整数 | 最初授予的选择数 |
Num of User Picks | 整数 | 剩余的选择数 |
日期时间 | 字符串 | 游戏进行的服务器UTC时间 |
data | JSON 表中表 | 奖励游戏的表中表 |