GET
/
organizations
/
{orgId}
/
devices
/
{deviceId}
curl --request GET \
  --url https://managexrapi.com/organizations/{orgId}/devices/{deviceId} \
  --header 'Authorization: Basic <encoded-value>'
{
  "serial": "2G0YC1ZF630NZA",
  "name": "Device_0024",
  "mac": "CE:AF:07:47:E0:AE",
  "model": "Quest 3",
  "manufacturer": "Oculus",
  "notes": "With Taylor L",
  "batteryLevel": 34,
  "batteryIsCharging": true,
  "online": true,
  "osVersion": 12,
  "outOfDate": false,
  "pauseUpdates": false,
  "registerDate": "Tue, 27 Feb 2024 07:28:03 GMT",
  "updating": false,
  "factoryResetStatus": null,
  "firmwareVersion": "65.0.0.546.341",
  "configuration": {
    "name": "Test Configuration",
    "id": "OZ04csIYkA0EArkeu1vX"
  },
  "tags": [
    {
      "id": "sFidGmedeQofSBcvRcyn",
      "name": "History"
    }
  ],
  "tutorialModeEnabled": false,
  "kioskModeOverride": false,
  "lastSync": "Tue, 18 Jun 2024 21:46:34 GMT",
  "ram": {
    "available": 3704000512,
    "total": 8108634112
  },
  "location": {
    "city": "San Francisco",
    "region": "California",
    "country": "United States",
    "continent": "North America",
    "timeZone": "America/Los_Angeles",
    "latitude": 37,
    "longitude": -122
  },
  "connectedWifiNetwork": {
    "ssid": "TheElectricCity"
  },
  "storage": {
    "available": 107079929856
  }
}

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

orgId
string
required

The ID of the organization. Locate the orgId under Organization Settings > API Keys.

deviceId
string
required

Unique identifier (serial number) of the device

Response

200 - application/json

A device object

The response is of type object.