List configurations
curl --request GET \
--url https://managexrapi.com/v1/configurations/ \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://managexrapi.com/v1/configurations/"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://managexrapi.com/v1/configurations/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://managexrapi.com/v1/configurations/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://managexrapi.com/v1/configurations/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://managexrapi.com/v1/configurations/")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://managexrapi.com/v1/configurations/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"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",
"hidden": false,
"forceInstall": false,
"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"
]
}
],
"kioskVrContent": {
"type": "app",
"id": {
"packageName": "<string>",
"releaseChannel": "<string>"
}
},
"kioskVideoSettings": {
"loopVideo": true,
"loopVideoAfterNSecondsHeadsetOff": 30
},
"files": [
{
"id": "DLO133U5NFLMAL1",
"url": "https://storage.googleapis.com/managexr-files/org_456/files/file_123abc.mp4",
"name": "main_assets_all.bundle",
"size": 1204975930,
"md5": "7ah69cMtXyaz5OfsCRtOjQ==",
"description": "Content bundle for training app",
"libraryDirectoryPath": "/",
"deviceDirectoryPaths": [
"/Android/obb/com.managexr.exampleApp/files"
]
}
],
"wifiNetworks": [
{
"id": "wifi_abc123",
"ssid": "MyNetwork",
"nickname": "Office Wi-Fi",
"type": "WPA_ENTERPRISE",
"priorityWifiNetwork": false
}
]
}
]
}{
"statusCode": 403,
"message": "Forbidden",
"error": "ManageXR Error"
}Configurations
List Configurations
Retrieve all configurations.
GET
/
v1
/
configurations
/
List configurations
curl --request GET \
--url https://managexrapi.com/v1/configurations/ \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://managexrapi.com/v1/configurations/"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://managexrapi.com/v1/configurations/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://managexrapi.com/v1/configurations/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://managexrapi.com/v1/configurations/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://managexrapi.com/v1/configurations/")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://managexrapi.com/v1/configurations/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"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",
"hidden": false,
"forceInstall": false,
"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"
]
}
],
"kioskVrContent": {
"type": "app",
"id": {
"packageName": "<string>",
"releaseChannel": "<string>"
}
},
"kioskVideoSettings": {
"loopVideo": true,
"loopVideoAfterNSecondsHeadsetOff": 30
},
"files": [
{
"id": "DLO133U5NFLMAL1",
"url": "https://storage.googleapis.com/managexr-files/org_456/files/file_123abc.mp4",
"name": "main_assets_all.bundle",
"size": 1204975930,
"md5": "7ah69cMtXyaz5OfsCRtOjQ==",
"description": "Content bundle for training app",
"libraryDirectoryPath": "/",
"deviceDirectoryPaths": [
"/Android/obb/com.managexr.exampleApp/files"
]
}
],
"wifiNetworks": [
{
"id": "wifi_abc123",
"ssid": "MyNetwork",
"nickname": "Office Wi-Fi",
"type": "WPA_ENTERPRISE",
"priorityWifiNetwork": false
}
]
}
]
}{
"statusCode": 403,
"message": "Forbidden",
"error": "ManageXR Error"
}Authorizations
API key based authentication where 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. This parameter is only necessary when using multi-organization API keys.
Defaults to the organizationId associated with the API key.
Response
A list of configurations
Show child attributes
Show child attributes
⌘I