GET
/
v1
/
apps
/
{packageName}
/
versions
curl --request GET \
  --url https://managexrapi.com/v1/apps/{packageName}/versions \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "av_123",
      "type": "managed",
      "configurationDeployments": {
        "config_123": 1,
        "config_456": 0
      },
      "createdAt": 1645615777448,
      "updatedAt": 1687352117203,
      "versionCode": 83894522,
      "versionName": "8.7.8.1206",
      "versionLabel": "Quest",
      "apkSize": 72633861,
      "obbSize": 1024,
      "selfHosted": true,
      "apkUrl": "https://storage.example.com/apps/com.example.app.apk",
      "obbUrl": "https://storage.example.com/apps/com.example.app.obb"
    },
    {
      "id": "av_456",
      "type": "shared",
      "configurationDeployments": {
        "config_123": 0,
        "config_456": 1
      },
      "createdAt": 1645615777448,
      "updatedAt": 1687352117203,
      "versionCode": 83894522,
      "versionName": "8.7.8.1206",
      "versionLabel": "Quest",
      "apkSize": 72633861,
      "obbSize": 1024,
      "selfHosted": false,
      "releaseChannelName": "Production",
      "sharingOrganizationName": "XR Developer"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key based authentication where <encoded-value> is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Path Parameters

packageName
string
required

The package name of the app

Query Parameters

organizationId
string

Unique identifier of the organization. Defaults to the organization associated with the API key if no id supplied.

Response

200
application/json
A list of app versions

The response is of type object.