This API is to process settlement transactions. It ensures that players whose payouts could not be processed earlier are retried automatically according to a fixed schedule.
This API is used to resend all transactions that were not processed earlier due to technical issues. All payout transactions are submitted for settlement.
This API call is scheduled every day at 01:00 AM UTC to ensure that all transactions from the previous day are processed for settlement.
Upon receiving a successful response from your system, the transactions will be processed.
Any transactions that fail will be treated as lost bets. No bet reversals will be performed.
Please ensure your wallet balances are updated accordingly.
Returns an array of responses with each user’s updated balance.
A SHA256 HMAC signature generated using the request body and timestamp.
Format: HMAC_SHA256(JSON.stringify(data) + ’|’ + timestamp), signed using the
provided secret key.
To maintain precision and avoid floating-point errors, the bet field is processed as an integer value by multiplying the actual amount by 100000.For example, a bet of 12.34567 will be represented as 1234567 in the API.
To maintain precision and avoid floating-point errors, the balance field is processed as an integer value by multiplying the actual amount by 100000.For example, a balance of 12.34567 will be represented as 1234567 in the API.