此 API 请求使运营商能够获取玩家的可用余额。
WalletGetBalance() 请求
类型 | 输入 |
---|
HTTP 方法 | POST |
API URL | https://<API_BASE_URL>/wallet/wallet-get-balance/ |
标头 | "Content-Type": "application/json" |
POST 参数 | json 对象 e.g.:
{ "api_key": "3c2ef39d02581e2db3ddf6c713e83e05", "username": "123123", "password": "1234yf" } |
参数 | 类型 | Description |
---|
api_key | 字符串 | 分配给每个前端的 API Key |
username | 字符串 | 玩家的用户名 |
password | 字符串 | 玩家的密码 |
GetBalance() 响应 + 示例
{ "status": "success", "amount": 12345, "currency": "USD" "account_id": "123123" }
响应对象中的对象/Key | 类型 | 描述 |
---|
status | 整数 | 响应状态 |
amount | 十进制小数 | 玩家的最新余额 |
currency | 字符串 | 玩家的货币种类 |
account_id | 字符串 | 玩家的唯一 ID |