GET
/
v1
/
configurations
/
curl --request GET \
  --url https://managexrapi.com/v1/configurations/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "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

Authorization
string
header
required

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

organizationId
string

Unique identifier of the organization.
Defaults to the organization associated with the API key when omitted.

Response

200
application/json

A list of configurations

The response is of type object.