Balance
Last updated
Last updated
Retrieves the player's balance in subunits.
HMAC-SHA256 signature of the request body using the shared password.
Unique identifier of the user on the Operator side.
Game reference.
Identifier of currency.
Must be set to "balance".
True if the request is from a mobile device.
Session ID generated when the game is launched.
Player balance successfully retrieved.
Forbidden - signature does not match.
POST /operator/wallet HTTP/1.1
Host:
X-REQUEST-SIGN: text
Content-Type: application/json
Accept: */*
Content-Length: 134
{
"player_id": "6",
"reference": "Monkey",
"currency_code": "EUR",
"action": "balance",
"is_mobile": false,
"session_token": "session_token_here"
}
{
"player_id": "6",
"balance": 10000,
"currency_code": "EUR"
}