getReleaseStatus

Returns whether a specific build has been released.

Request

GET /v1/getReleaseStatus?appId={appId}&buildId={buildId}

Query Parameters

ParameterTypeRequiredDescription
appIdstringYesThe ToDesktop app ID.
buildIdstringYesThe build ID to check.

Response

{
  "isReleased": true
}

Response Fields

FieldTypeDescription
isReleasedbooleantrue when the build has either a full release timestamp or a partial release timestamp.

Notes

This lookup is cached by appId and buildId.

Example

curl "https://api.todesktop.com/v1/getReleaseStatus?appId=your-app-id&buildId=your-build-id"

Errors

  • 400 if appId or buildId is missing.
  • 404 if the app or build cannot be found.