Getting Started
Devices
Configurations
App Versions & Release Channels
Organizations
Configurations
Create Configuration
Create a new configuration. Creates a blank configuration with default settings and no content.
POST
/
v1
/
configurations
curl --request POST \
--url https://managexrapi.com/v1/configurations/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "New Configuration A"
}'
{
"data": {
"id": "sFidGmedeQofSBcvRcyn",
"name": "Education",
"registrationCode": "f7GbHvH",
"deviceCount": 15,
"deviceExperienceMode": "HOME_SCREEN",
"vrContent": [
{
"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",
"sharingOrganizationName": "XR Developer",
"releaseChannelName": "Production",
"supportedDeviceModels": [
"Quest 3",
"Quest 3S",
"Pico 4 Ultra Enterprise"
]
}
],
"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.
Query Parameters
Unique identifier of the organization.
Defaults to the organization associated with the API key.
Body
application/json
Response
200
application/json
The created configuration
The response is of type object
.
curl --request POST \
--url https://managexrapi.com/v1/configurations/ \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{
"name": "New Configuration A"
}'
{
"data": {
"id": "sFidGmedeQofSBcvRcyn",
"name": "Education",
"registrationCode": "f7GbHvH",
"deviceCount": 15,
"deviceExperienceMode": "HOME_SCREEN",
"vrContent": [
{
"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",
"sharingOrganizationName": "XR Developer",
"releaseChannelName": "Production",
"supportedDeviceModels": [
"Quest 3",
"Quest 3S",
"Pico 4 Ultra Enterprise"
]
}
],
"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"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.