This API request enables the operator to get the status of wallet transaction. Transaction can be either deposit or withdraw by operator.
WalletTransactionStatus() Request
| Type | Input |
|---|---|
| HTTP Method | POST |
| API URL | https://<API_BASE_URL>/wallet/wallet-transaction-status/ |
| Headers | "Content-Type": "application/json" |
| POST Parameters | json object e.g.:{ |
| Parameters | Type | Description |
|---|---|---|
api_key | String | API Key allocated to each front-end |
username | String | Username of the player |
password | String | Password of the player |
transaction_type | String | Type of transaction. It can be either ‘deposit’ or ‘withdraw’ |
transaction_id | String | Unique transaction ID |
WithdrawStatus() Response + Example
{
"result": {"status": "success",
"transaction_id": "10032",
}
}
| Object/Key in Response Object | Type | Description |
|---|---|---|
result | JSON Object | Key result contains the JSON object as value. |
status | String | Response status |
transaction_id | String | Transaction ID |