curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/edge \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"teamName": "RedTeam",
"edge": {
"v1": {
"x": 0,
"y": 0,
"z": 0
},
"v2": {
"x": 1,
"y": 0,
"z": 0
}
}
}
'Retrieves detailed information about a specific edge (connection between two vertices) on the game cube, useful for understanding pathways and blockades.
curl --request POST \
--url http://50.187.81.221:4000/api/v1/cubic/edge \
--header 'Content-Type: application/json' \
--data '
{
"gameID": "uniqueGame123",
"teamName": "RedTeam",
"edge": {
"v1": {
"x": 0,
"y": 0,
"z": 0
},
"v2": {
"x": 1,
"y": 0,
"z": 0
}
}
}
'Request to retrieve data associated with a specific edge on the game cube for a given game and team.
Edge data retrieved successfully.