the ID of the Bingo game
curl -L \ --url '/v2/admin/bingo-games/{bingo_game_id}' \ --header 'X-API-Key: YOUR_API_KEY'
{ "bingo_game": { "id": "text", "name": "text", "description": "text", "status": "text", "prize_ids": [ "text" ], "program_id": 1, "bingo_tasks": [ "text" ] } }
curl -L \ --url '/v2/admin/bingo-games' \ --header 'X-API-Key: YOUR_API_KEY'
{ "bingo_games": [ "text" ] }
the prize_ids for the bingo game
the name of the Bingo game
curl -L \ --request POST \ --url '/v2/admin/bingo-games' \ --header 'X-API-Key: YOUR_API_KEY' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data '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
curl -L \ --request PATCH \ --url '/v2/admin/bingo-games/{bingo_game_id}' \ --header 'X-API-Key: YOUR_API_KEY' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data 'name=text&description=text&prize_ids=&status=text'