the ID of the Bingo game
GET /partner-api/v2/admin/bingo-games/{bingo_game_id} HTTP/1.1 Host: X-API-Key: YOUR_API_KEY Accept: */*
Successful response
{ "bingo_game": { "id": "text", "name": "text", "description": "text", "status": "text", "prize_ids": [ "text" ], "program_id": 1, "bingo_tasks": [ "text" ] } }
GET /partner-api/v2/admin/bingo-games HTTP/1.1 Host: X-API-Key: YOUR_API_KEY Accept: */*
{ "bingo_games": [ "text" ] }
the prize_ids for the bingo game
the name of the Bingo game
POST /partner-api/v2/admin/bingo-games HTTP/1.1 Host: X-API-Key: YOUR_API_KEY Content-Type: application/x-www-form-urlencoded Accept: */* Content-Length: 51 "prize_ids=[]&name='text'&description='text'"
{ "bingo_game": { "id": "text", "name": "text", "description": "text", "status": "text", "prize_ids": [ "text" ], "program_id": 1 } }
the description of the Bingo game
the status of the Bingo game
PATCH /partner-api/v2/admin/bingo-games/{bingo_game_id} HTTP/1.1 Host: X-API-Key: YOUR_API_KEY Content-Type: application/x-www-form-urlencoded Accept: */* Content-Length: 67 "name='text'&description='text'&prize_ids=[]&status='text'"