curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/vertex \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"teamName": "RedTeam",
"vertex": {
"x": 0,
"y": 0,
"z": 0
}
}
'Fetches detailed information about a specific vertex (intersection point) on the game cube, including any ships or objects present.
curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/vertex \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"teamName": "RedTeam",
"vertex": {
"x": 0,
"y": 0,
"z": 0
}
}
'Request to retrieve data associated with a specific vertex on the game cube for a given game and team.
Vertex data retrieved successfully.