curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/startGame \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"turnLength": 60
}
'Initiates a previously created game, setting the turn length and beginning the gameplay.
curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/startGame \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"turnLength": 60
}
'Information required to start a game, including the game ID and the duration of each turn in seconds.
Game successfully started.