PlayerCheck() API

This API request enables the operator to check weather player is gaming or not.

PlayerCheck() Request

TypeInput
HTTP MethodPOST
API URLhttps://<API_BASE_URL>/games/is-player-gaming/
Headers"Content-Type": "application/json"
POST Parametersjson object e.g.:
{
"api_key": "wefytuhfyfkw",
"username": "test_player",
"password": "785956"
}
ParametersTypeDescription
api_keyStringAPI Key allocated to each front-end
usernameStringPlayer’s username.
passwordStringPlayer’s password.

GameRoundHistory() Response & Example

{
	"result": {
	     "username": "test_username",
             "currency": "EUR",
             "is_gaming": false
	}
}

Object/Key in Response ObjectTypeDescription
resultJSON ObjectKey result contains the JSON object as value.
result.usernameStringPlayers Username
result.currencyStringPlayers Currency
result.is_gamingBooleanTrue indicates, Player is gaming
False indicates, Player id not gaming