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"
}
]
}Returns a list of all app versions for a given package name
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"
}
]
}API key based authentication where API_KEY_ID:API_KEY_SECRET
The package name of the app
Unique identifier of the organization. Defaults to the organization associated with the API key if no id supplied.
A list of app versions
Show child attributes
Unique identifier of the app version
"av_123"
Type of the app version
managed, shared, external, instant "managed"
Map of configuration ids to device count using application
{ "config_123": 1, "config_456": 0 }Creation timestamp
1645615777448
Last update timestamp
1687352117203
Version code of the app
83894522
Version name of the app
"8.7.8.1206"
Label for uniqueness among app versions
"Quest"
Size of the APK file in bytes
72633861
Size of the OBB file in bytes
1024
Whether the app is self-hosted
true
URL of the APK file (self-hosted apps only)
"https://storage.example.com/apps/com.example.app.apk"
URL of the OBB file (self-hosted apps only)
"https://storage.example.com/apps/com.example.app.obb"
Name of the organization sharing the app (shared apps only)
"XR Developer"
Name of the release channel (shared apps only)
"Production"
List of supported device models for Instant App (instant apps only)
[
"Quest 3",
"Quest 3S",
"Pico 4 Ultra Enterprise"
]