Console
AppHub Tether

Update

Checks whether a newer version of your app is available in the AppHub catalog compared to the currently installed version.

GET http://127.0.0.1:7420/update
Requires X-AppHub-Token header or Authorization: AppID:AppKey — see Authentication
This endpoint requires AppHub Store to be running on your machine. The live tester calls your local AppHub instance directly.

Query parameters

ParameterRequiredDescription
appidrequiredThe packagename of the app to check

Success response 200

{
  "ok": true,
  "appid": "com.studio.mygame",
  "hasUpdate": true,
  "currentVersion": "1.0.0",
  "latestVersion": "1.2.0"
}

Response fields

FieldTypeDescription
okbooleantrue if the app is installed and the check succeeded
hasUpdatebooleantrue if latestVersion differs from currentVersion
currentVersionstringVersion string from the installed apphub.json
latestVersionstringVersion string from the AppHub catalog

Errors

ReasonCause
not_installedThe app is not installed on this machine
missing_appidThe appid query parameter was not provided