curl --request GET \
--url https://managexrapi.com/v1/apps/{packageName}/release-channels \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"id": "rc_123",
"name": "Stable",
"type": "app",
"packageName": "com.example.app",
"targetVersion": {
"id": "av_123",
"type": "managed",
"configurationDeployments": {
"config_123": 1,
"config_456": 0
},
"createdAt": 1645615777448,
"updatedAt": 1687352117203,
"versionCode": 83894522,
"versionName": "8.7.8.1206",
"apkSize": 72633861,
"selfHosted": false
},
"sharedOrganizations": [
{
"id": "org_789",
"name": "Example Org"
}
]
},
{
"id": "rc_456",
"name": "Beta",
"type": "app",
"packageName": "com.example.app",
"targetVersion": {
"id": "av_456",
"type": "shared",
"configurationDeployments": {
"config_123": 0,
"config_456": 1
},
"createdAt": 1645615777448,
"updatedAt": 1687352117203,
"versionCode": 83894522,
"versionName": "8.7.8.1206",
"apkSize": 72633861,
"selfHosted": false
},
"sharedOrganizations": []
}
]
}Returns a list of all release channels for a given application
curl --request GET \
--url https://managexrapi.com/v1/apps/{packageName}/release-channels \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"id": "rc_123",
"name": "Stable",
"type": "app",
"packageName": "com.example.app",
"targetVersion": {
"id": "av_123",
"type": "managed",
"configurationDeployments": {
"config_123": 1,
"config_456": 0
},
"createdAt": 1645615777448,
"updatedAt": 1687352117203,
"versionCode": 83894522,
"versionName": "8.7.8.1206",
"apkSize": 72633861,
"selfHosted": false
},
"sharedOrganizations": [
{
"id": "org_789",
"name": "Example Org"
}
]
},
{
"id": "rc_456",
"name": "Beta",
"type": "app",
"packageName": "com.example.app",
"targetVersion": {
"id": "av_456",
"type": "shared",
"configurationDeployments": {
"config_123": 0,
"config_456": 1
},
"createdAt": 1645615777448,
"updatedAt": 1687352117203,
"versionCode": 83894522,
"versionName": "8.7.8.1206",
"apkSize": 72633861,
"selfHosted": false
},
"sharedOrganizations": []
}
]
}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 release channels
Show child attributes
Unique identifier of the release channel
"rc_123"
Name of the release channel
"Stable"
Type of the release channel
app, link, video "app"
Package name of the app
"com.example.app"
The target app version for this release channel
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"
Size of the APK file in bytes
72633861
Whether the app is self-hosted
false