How to determine the minimum required version for the mobile client apps

The TrackMan Range Cloud API has an endpoint where it returns versioning information, including the minimum required versions for the Range iOS and Android apps.

The link is named system_version and can be obtained from the /api endpoint.

GET /api/system/version
Host: https://api.trackmanrange.com

Example response:

{
    "version": "1.0.12",
    "apps": {
        "ios": {
            "minVersion": {
                "version": "1.1.0",
                "major": 1,
                "minor": 1,
                "patch": 0
            }
        },
        "android": {
            "minVersion": {
                "version": "1.0.0",
                "major": 1,
                "minor": 0,
                "patch": 0
            }
        }
    }
}

This endpoint does not require any authentication.