此 API 请求使运营商能够获取钱包交易的状态。 交易可以是运营商存款或取款。
WalletTransactionStatus() 请求
类型 | 输入 |
---|
HTTP 方法 | POST |
API URL | https://<API_BASE_URL>/wallet/wallet-transaction-status/ |
标头 | "Content-Type": "application/json" |
POST 参数 | json 对象 e.g.:
{ "api_key": "1pghjl4v5apt2bks", "username": "test_username", "password": "passt84fas28", "transaction_type":"deposit", "transaction_id": "10032" } |
参数 | 类型 | 描述 |
---|
api_key | 字符串 | 分配给每个前端的 API Key |
username | 字符串 | 玩家的用户名 |
password | 字符串 | 玩家的密码 |
transaction_type | 字符串 | 交易类型。 它可以是’存款’或’取款’ |
transaction_id | 字符串 code> | 唯一交易 ID |
WithdrawStatus() 响应 + 示例
{ "result": {"status": "success", "transaction_id": "10032", } }
响应对象中的对象/Key | 类型 | 描述 |
---|
result | JSON 对象 | Key 结果包含 JSON 对象作为值。 |
status | 字符串 | 响应状态 |
transaction_id | 字符串 | 交易 ID |