This API request enables the operator to deposit funds from operator’s main wallet to provider’s game wallet.
WalletDeposit() Request
Type | Input |
---|---|
HTTP Method | POST |
API URL | https://<API_BASE_URL>/wallet/wallet-deposit/ |
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 |
amount | Decimal | Amount to be deposited into DG game wallet |
transaction_id | String | Transaction ID |
WalletDeposit() Response + Example
{
"result": {
"status": "success",
"amount": 200.00,
"currency": "EUR"
}
}
Object/Key in Response Object | Type | Description |
---|---|---|
result | JSON Object | Key result contains the JSON object as value. |
status | String | Response status |
amount | Decimal | Player’s balance after deposit |
currency | String | Player’s currency. |