Get active jackpots
Headers
-
Signature
string Required -
Public-Key
string Required
POST
/get-jackpots
curl \
--request POST 'BASE_URL/get-jackpots' \
--header "Content-Type: application/json" \
--header "Signature: string" \
--header "Public-Key: string" \
--data '{"brandId":"string","currency":"string"}'
Request examples
# Headers
Signature: string
Public-Key: string
# Payload
{
"brandId": "string",
"currency": "string"
}
Response examples (200)
{
"jackpots": [
{
"gameIds": [
"string"
],
"id": "string",
"pots": [
{
"amount": 42.0,
"currency": "string",
"id": "string"
}
]
}
]
}
Response examples (400)
{
"code": "ERROR_UNKNOWN_ERROR",
"description": "string",
"traceId": "string"
}
Response examples (401)
{
"code": "ERROR_INVALID_SIGNATURE",
"description": "string",
"traceId": "string"
}
Response examples (500)
{
"code": "ERROR_UNKNOWN_ERROR",
"description": "string",
"traceId": "string"
}