Skip to content

List Nodes (by team)

Lists all nodes accessible to your team. The SDKs automatically resolve your teamId; REST requires it in the path.

  • Method: GET
  • Path (REST): /node/by-team/{teamId}
  • Returns: Array of Node objects
  • Backend behavior: returns only nodes belonging to the team from your credentials. No side effects. Cache-friendly.
java.util.List<Node> nodes = client.nodeClient().getNodes().execute();
const nodes = await client.nodeClient.getNodes();
nodes = client.node_client.get_nodes()
curl -s \
  -H "Accept: application/json" \
  -H "Application-Id: $GMC_APP_ID" \
  -H "Application-Secret: $GMC_APP_SECRET" \
  https://api.gamemanager.cloud/node/by-team/$TEAM_ID

Responses

  • 200 OK: List of nodes.
  • 403 Forbidden: missingPermission.ACCESS_NODES โ€” you lack read access in this team.
  • 404 Not Found: general.not_found โ€” team not found.
  • 400 Bad Request: validation.failed โ€” invalid teamId format.