List configured games
Returns one entry per game slug with RTP variants, categories, and side-bet identifiers. Drives the max-exposure editor.
Responses
- application/json
- application/json
Request Example for get/backoffice/games
curl https://rgs.jackpot.studio/backoffice/games \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"$schema": "https://example.com/schemas/ListGamesOutputBody.json",
"games": [
{
"billingCategory": "string",
"categories": [
"string"
],
"description": "string",
"multiAction": true,
"name": "string",
"rtps": [
"string"
],
"sideBets": [
"string"
],
"slug": "string"
}
]
}