This service is used to fetch the accumulated jackpot amounts for the available games
11.1 Jackpot Request
| Type | Input |
| Method | POST |
| URL | https://<OPERATOR-API-BASE-URL>/feeds/jackpot |
| Headers | "Content-Type": "application/json" |
| POST Parameters | JSON Object |
| Example | https://<OPERATOR-API-BASE-URL>/feeds/jackpot?api_key={API_KEY} &site_id={SITE_ID} |
11.2 Request Parameters
| Parameter | Type | Description | Optional |
| api_key | String | API KEY allocate to Operator. | |
| site_id | String | Site ID allocated to the Operator. |
11.3 Response Parameters
| Parameter | Type | Description |
| games | JSON Object | Presented as a key in the response dictionary. |
| jackpot feed | JSON Object | Presented 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"
},...
]
}