curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/cubeState \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"teamName": "RedTeam"
}
'Retrieves the complete current state of the game board (the cube) for a given game ID and team, providing visibility into the game’s ongoing status.
curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/cubeState \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"teamName": "RedTeam"
}
'Request to retrieve the current state of the game cube for a specific game and team.
Current cube state retrieved successfully.