Skip to main content
POST
/
api
/
v1
/
cubic
/
vertex
Get Vertex
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
  }
}
'

Body

application/json

Request to retrieve data associated with a specific vertex on the game cube for a given game and team.

Data transfer object for requesting data associated with a specific vertex.

gameID
string
required

The unique identifier of the game.

teamName
string
required

The name of the team requesting the vertex data.

vertex
object
required

The specific vertex for which to retrieve data.

Response

201

Vertex data retrieved successfully.