此 API 请求使运营商能够获得玩家在给定时间段内的投注活动汇总。
PlayerBets() 请求
类型 | Input |
---|
HTTP 方法 | POST |
API URL | https://<API_BASE_URL>/player/player-bets/ |
标头 | "Content-Type": "application/json" |
POST 参数 | json object e.g.:
{ "api_key": "1pghjl4v5apt2bks", "username": "test_username", "start_date": "2020-02-20", "end_date": "2020-02-21", "amount_type": "real", } |
参数 | 类型 | 描述 |
---|
api_key | 字符串 | 分配给每个前端的 API Key |
username | 字符串 | 玩家的用户名 |
start_date | 字符串 | 开始日期 用于感兴趣的时间段 |
end_date | 字符串 | 结束日期用于感兴趣的时间段 |
amount_type | 字符串 | 游戏类型 |
玩家投注() 响应 + 示例
{ "result": {"status": "success", "username": "test_username", "account_id": "10032", "num_bets": 50, "total_bet_amount": 1050, "total_win_amount": 920, "currency": "GBP" } }
响应对象中的对象/Key | 类型 | 描述 |
---|
result | JSON 对象 | Key 结果包含 JSON 对象作为值。 |
status | 字符串 | 响应状态 |
username | 字符串 | 玩家的用户名 |
account_id | 整数 | 玩家的帐户 ID |
num_bets | 整数 | 玩家在给定时间段内投注的次数 |
total_bet_amount | 整数 | 玩家在给定时间段内下注的总金额 |
total_win_amount | 整数 | 玩家在给定时间内赢得的总金额 |
currency | 字符串 | 3个字母的ISO货币代码 |