app-version

Check app version

Checks if the app version needs to be updated. Returns whether update is required and if it is a force update.

post/app-version/check

Request body

platform'android' | 'ios' required

Platform (android or ios)

current_versionstring required

Current app version installed on device (e.g., "1.0.0")

Example request

{
  "platform": "android",
  "current_version": "1.0.0"
}

Response

Version check completed

update_requiredboolean required

Whether update is required

force_updateboolean required

Whether force update is required

latest_versionstring required

Latest available version

minimum_required_versionstring

Minimum required version

release_notesstring

Release notes for the update

current_versionstring required

Current version provided by app

Example response

{
  "update_required": true,
  "latest_version": "1.1.0",
  "minimum_required_version": "1.0.0",
  "release_notes": "New features and bug fixes",
  "current_version": "1.0.0"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.