11. JACKPOT FEED

This service is used to fetch the accumulated jackpot amounts for the available games

11.1 Jackpot Request

TypeInput
MethodPOST
URLhttps://<OPERATOR-API-BASE-URL>/feeds/jackpot
Headers "Content-Type": "application/json"
POST ParametersJSON Object
Examplehttps://<OPERATOR-API-BASE-URL>/feeds/jackpot?api_key={API_KEY} &site_id={SITE_ID}

11.2 Request Parameters

ParameterTypeDescriptionOptional
api_keyStringAPI KEY allocate to Operator.
site_idStringSite ID allocated to the Operator.

11.3 Response Parameters

ParameterTypeDescription
gamesJSON ObjectPresented as a key in the response dictionary.
jackpot feedJSON ObjectPresented as a key inside the result dictionary contains
list of dictionaries with game details.
{
	"jackpot_feed": [{
		"gameId": 363,
		"game_name": "Treasure Room",
		"currencyCode": "INR",
		"jackpot Amount": "58750.00"
	        },{
		"gameId": 363,
		"game_name": "Treasure Room",
		"currencyCode": "USD",
		"jackpot Amount": "58750.00"
	        },...
          ]
}