这类似于借记 API 请求。 此 API 请求用于将货币金额计入玩家的账户余额。 每当玩家从游戏中赢得货币价值时,就会进行此操作。 它的响应将包含所有记入金额的信息。
Credit() 请求
类型 | 输入 |
---|---|
HTTP 方法 | POST |
API URL | https://<API_BASE_URL> /credit |
标题 | "Content-Type": "application/json" |
POST参数 | <{ “token”: “cc918a3e4dea45ef5c31d6e3b9dce4afed3c02eb”, “account_id”: “259823”, “amount”: 2500, “amount_type”: “real”, “currency”: “GBP”, “game_id”: 1, “transaction_id”: “123456”, “round_id”: 198909, “game_type”: “slots”, “game_name”: “testgamename”, “note”: “credit”, “round_end_state”: true, “bonus_id”: “test2147hff”, “isfreespin”: true }code>json对象 eg: { |
参数 | 类型 | 描述 |
---|---|---|
token | 字符串 | 分配给每个玩家的唯一字符串(会话 ID)。 |
account_id | 字符串 | 玩家账号 |
amount | 整数 | 记入玩家钱包的金额 |
amount_type | 字符串 | 表示金额类型。 可以是real / promo_freespin。 |
currency | String td> | 玩家的货币 |
game_id | Integer< /code> | 游戏唯一ID |
transaction_id | String | 交易唯一id |
round_id | 整数 | 每次游戏/旋转的回合 ID。 |
game_type | String | 游戏类型。老虎机/桌上游戏/刮刮卡/宾果游戏 |
game_name | String td> | 游戏名称 |
note | String< /code> | 关于信用请求的额外信息 |
round_end_state | td>true 表示回合结束 false 表示回合开始 | |
String | 提供商将发送与促销免费旋转相关的奖金/活动 ID . 实模式下为null. | |
isfreespins | Boolean | true 表示它是 freespin。 false 表示它不是 freespin。 |
Credit() 响应 + 示例
{ "status": 0, "account_id": "123123", "country": "US", "token": "3c2ef39d02581e2db3ddf6c713e83e05", "balance": 12345, "currency": "USD", "transaction_id": "205354854449856", "bonus_amount": "10" }
响应对象中的对象/Key | 类型 | 描述 |
---|---|---|
status | 整数 code> | 响应状态 |
account_id | 字符串 | 玩家账号ID。 |
country | 字符串 | 玩家国家 |
token code> | 字符串 | 分配给每个玩家的唯一字符串(会话 ID |
balance | 整数 | 玩家余额 | /tr>
currency | 字符串 | 玩家货币种类 |
transaction_id | 字符串 | 记入交易ID |
bonus_amount | 整数 | 玩家钱包中可用的奖金数额。 如果此金额不可用,请发送 0 值。 |