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

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.

Path Parameters

id
string
required

Unique identifier of the configuration

Query Parameters

organizationId
string

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.