This API is used exclusively in Multiplayer games to retry failed payout transactions. It ensures that players whose payouts could not be processed earlier are retried automatically according to a fixed schedule.
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.