Configurations
Get Configuration
Getting Started
Devices
Configurations
App Versions & Release Channels
Organizations
Configurations
Get Configuration
Retrieve a configuration by id
GET
/
v1
/
configurations
/
{id}
curl --request GET \
--url https://managexrapi.com/v1/configurations/{id} \
--header 'Authorization: Basic <encoded-value>'
{
"data": {
"id": "sFidGmedeQofSBcvRcyn",
"name": "New Configuration A",
"registrationCode": "ad39kda",
"deviceCount": 15,
"deviceExperience": "HOME_SCREEN",
"content": [
{
"contentType": "app",
"id": "kaldh3907hjxmi219",
"title": "My Custom VR App",
"packageName": "com.picovr.vrlauncher",
"iconUrl": "https://storage.example.com/apps/com.example.app/icon.png",
"createdAt": 1645615777448,
"updatedAt": 1687352117203,
"configurationDeployments": {
"config_123": 1
},
"type": "managed",
"versionCode": 10203,
"versionName": "1.2.3",
"versionLabel": "quest",
"apkSize": 1204975930,
"obbSize": 19097894,
"selfHosted": false
}
],
"files": [
{
"id": "file_123abc",
"url": "https://storage.googleapis.com/managexr-files/org_456/files/file_123abc.mp4",
"name": "training-video.mp4",
"size": 1204975930,
"md5": "7ah69cMtXyaz5OfsCRtOjQ==",
"description": "Introductory training video for new hires",
"directory": "Android/obb/your.app.package/bundles/Onboarding"
}
],
"wifiNetworks": [
{
"id": "wifi_abc123",
"ssid": "MyNetwork",
"nickname": "Office Wi-Fi",
"type": "WPA_ENTERPRISE"
}
]
}
}
Authorizations
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
Unique identifier of the configuration
Query Parameters
Unique identifier of the organization. Defaults to the organization associated with the API key if no id supplied.
Response
200
application/json
The requested configuration
The response is of type object
.
curl --request GET \
--url https://managexrapi.com/v1/configurations/{id} \
--header 'Authorization: Basic <encoded-value>'
{
"data": {
"id": "sFidGmedeQofSBcvRcyn",
"name": "New Configuration A",
"registrationCode": "ad39kda",
"deviceCount": 15,
"deviceExperience": "HOME_SCREEN",
"content": [
{
"contentType": "app",
"id": "kaldh3907hjxmi219",
"title": "My Custom VR App",
"packageName": "com.picovr.vrlauncher",
"iconUrl": "https://storage.example.com/apps/com.example.app/icon.png",
"createdAt": 1645615777448,
"updatedAt": 1687352117203,
"configurationDeployments": {
"config_123": 1
},
"type": "managed",
"versionCode": 10203,
"versionName": "1.2.3",
"versionLabel": "quest",
"apkSize": 1204975930,
"obbSize": 19097894,
"selfHosted": false
}
],
"files": [
{
"id": "file_123abc",
"url": "https://storage.googleapis.com/managexr-files/org_456/files/file_123abc.mp4",
"name": "training-video.mp4",
"size": 1204975930,
"md5": "7ah69cMtXyaz5OfsCRtOjQ==",
"description": "Introductory training video for new hires",
"directory": "Android/obb/your.app.package/bundles/Onboarding"
}
],
"wifiNetworks": [
{
"id": "wifi_abc123",
"ssid": "MyNetwork",
"nickname": "Office Wi-Fi",
"type": "WPA_ENTERPRISE"
}
]
}
}