Skip to content

Update Node

Trigger a node self-update. Typically pulls and applies the latest node software matching the backend versioning.

  • Method: POST
  • Path (REST): /node/{nodeId}/update
  • Returns: 202 Accepted
  • Backend behavior: Enqueues an update task on the node. Idempotent; repeated calls re-trigger check.
client.nodeClient().updateNode("node-123").execute();
await client.nodeClient.updateNode('node-123');
client.node_client.update_node('node-123')
curl -X POST \
  -H "Application-Id: $GMC_APP_ID" -H "Application-Secret: $GMC_APP_SECRET" \
  https://api.gamemanager.cloud/node/node-123/update

Responses

  • 202 Accepted: Update requested.
  • 403 Forbidden: missingPermission.MANAGE_NODES — you lack permission to manage nodes in this team.
  • 404 Not Found: general.not_found — node or team not found.