Skip to main content
curl --request POST \
  --url 'https://partner-platform-url/transaction/retry' \
  --header 'content-type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-signature: <x-signature>' \
  --header 'x-timestamp: <x-timestamp>' \
  --data '{
    "transactions": [
      {
        "transactionId": "dd96bda3-9990-4aed-9679-f451a4b82ac4",
        "sessionId": "f1dfc865-584c-4cba-a175-06172b2a41141731504451691",
        "roundId": "817e22b4-b030-468b-964e-62b9a7343050-1753428290674",
        "playerId": "18865671",
        "gameId": "G1720761376617",
        "currency": "EUR",
        "amount": 250000000
      }
    ]
}'
{
    "status": "RS_OK",
    "data": [
        {
            "status": "RS_OK",
            "transactionId": "dd96bda3-9990-4aed-9679-f451a4b82ac4",
            "sessionId": "d404f1da-26a6-44ff-8b0f-559915152be11742537289208",
            "roundId": "123xaf1a-s7ax-lles-9aws-5hjtjshosqq2be117425",
            "playerId": "18865671",
            "currency": "EUR",
            "balance": 300000000
        }
    ]
}
  POST  /transaction/retry

Functionality

  • Each failed payout will be retried up to 3 times. If all retry attempts fail, the transaction will be marked as cashout failed.
  • The retry process runs automatically every 4 hours.
Returns an array of responses with each user’s updated balance.

Headers

x-api-key
string
required
A unique identifier associated with operator calling API.
x-signature
string
required
A SHA256 HMAC signature generated using the request body and timestamp. Format: HMAC_SHA256(JSON.stringify(data) + ’|’ + timestamp), signed using the provided secret key.
x-timestamp
string
required
An Unix timestamp (milliseconds) when the request was sent. Ensure the same value is used in signature generation.
content-type
string
required
Must be set to application/json

Request Body

transactions
array
required

Response

status
string
required
Code indicates status of the request weather it is succeed or failed. We have listed error codes here
data
Data Array
curl --request POST \
  --url 'https://partner-platform-url/transaction/retry' \
  --header 'content-type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-signature: <x-signature>' \
  --header 'x-timestamp: <x-timestamp>' \
  --data '{
    "transactions": [
      {
        "transactionId": "dd96bda3-9990-4aed-9679-f451a4b82ac4",
        "sessionId": "f1dfc865-584c-4cba-a175-06172b2a41141731504451691",
        "roundId": "817e22b4-b030-468b-964e-62b9a7343050-1753428290674",
        "playerId": "18865671",
        "gameId": "G1720761376617",
        "currency": "EUR",
        "amount": 250000000
      }
    ]
}'
{
    "status": "RS_OK",
    "data": [
        {
            "status": "RS_OK",
            "transactionId": "dd96bda3-9990-4aed-9679-f451a4b82ac4",
            "sessionId": "d404f1da-26a6-44ff-8b0f-559915152be11742537289208",
            "roundId": "123xaf1a-s7ax-lles-9aws-5hjtjshosqq2be117425",
            "playerId": "18865671",
            "currency": "EUR",
            "balance": 300000000
        }
    ]
}