Latest Node Version¶
Get the latest available node version string.
- Method: GET
- Path (REST):
/node/latest-version - Returns: string version
- Backend behavior: Indicates the backend-supported node version. Useful to check update availability.
String version = gmc.nodeClient().getLatestVersion().execute();
const version = await client.nodeClient.getLatestVersion();
version = client.node_client.get_latest_version()
curl -s https://api.gamemanager.cloud/node/latest-version
Responses¶
- 200 OK: Version string returned as plain text.