Rollback Win

post

Processes a rollback-win request.

Header parameters
X-REQUEST-SIGNstringRequired

HMAC-SHA256 signature of the raw request body using the shared password.

Body
player_idstringRequired

Unique identifier of the user on Operator side.

amountintegerRequired

Amount in subunits.

currency_codestringRequired

Identifier of currency (ISO 4217).

is_mobilebooleanRequired

True if the request is from a mobile device.

actionstring ยท enumRequired

Must be set to "rollback-win"

Possible values:
Responses
200
Rollback processed (or ignored if transaction not found).
application/json
post
POST /operator/wallet HTTP/1.1
Host: 
X-REQUEST-SIGN: text
Content-Type: application/json
Accept: */*
Content-Length: 326

{
  "player_id": "6",
  "amount": 10,
  "currency_code": "EUR",
  "is_mobile": false,
  "action": "rollback-win",
  "payload": {
    "reference": "Monkey",
    "session_token": "c9cbb3d5-439f-acf6-9415ea68b20a",
    "provider_transfer_data": {
      "transaction_id": "95303151",
      "round_id": "864238",
      "rollback_win_transaction_id": "95303151",
      "table_reference": "c9cbb3d5-439f"
    }
  }
}
{
  "transaction_id": "563214566",
  "balance": 54636,
  "currency_code": "EUR"
}

Last updated