Transfer Wallet Deposit Request
POST http(s)://API_URL/v2/app/users/:userId/wallet/deposit?clientId=[CLIENT_ID]
| Parameter Name | Description | Optional / Mandatory |
|---|
| sign | Request signature | Mandatory |
| Parameter Name | Description | Optional / Mandatory |
|---|
| clientId | Casino identifier. Sent in the request line | Mandatory |
| userId | User identifier | Mandatory |
| currency | ISO currency code | Mandatory |
| amount | The amount of deposit in cents. It must be a positive number, other symbols are not accepted. | Mandatory |
| externalTransactionId | Transaction ID on your server | Optional |
In case of successful execution, the response to the request will contain the data on the processed deposit transaction.
| Parameter Name | Description | Optional / Mandatory |
|---|
| currency | ISO currency code | Mandatory |
| amount | Amount of deposit in cents | Mandatory |
| HTTP Code | Message | Description |
|---|
| 400 | Not valid request | Incorrect request signature |
| 404 | Player not found | The user with userId sent was not found |
| 422 | Currency not valid | Wrong currency ISO code was sent |
| Amount value has incorrect format | Incorrect deposit amount was sent. Deposit amount must be > 0 and contain numbers only. |
| Transaction already processed | Transaction related to passed transactionExternalId is already processed on our server |