Skip to main content
GET
/
v1
/
devices
/
sync-status
List device sync status
curl --request GET \
  --url https://managexrapi.com/v1/devices/sync-status \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "deviceId": "340YC10G8D14ML",
      "serial": "340YC10G8D14ML",
      "appSyncStatuses": [
        {
          "packageName": "com.oculus.panelapp.kiosk",
          "installed": true,
          "outOfDate": false,
          "hasError": false,
          "currentVersion": {
            "versionCode": 700402468,
            "versionName": "76.0.0.0.410",
            "versionLabel": "stable"
          },
          "targetVersion": {
            "versionCode": 700402468,
            "versionName": "76.0.0.0.410",
            "versionLabel": "stable"
          }
        }
      ]
    }
  ],
  "nextCursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.managexr.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

organizationId
string

Unique identifier of the organization. Defaults to all organizations the API key has access to.

Multi-org API key limitation: If your multi-org api key gives you access to more than 30 organizatinos, you must include a specific organizationId in this request.

include
enum<string>
required

Comma-separated list of content categories to include in the response. Currently only apps is supported. Required.

Available options:
apps
cursor
string

Opaque pagination cursor returned in nextCursor by a prior response. Treat as opaque. Pass the nextCursor from the previous response back as cursor to fetch the next page. End of stream is indicated by nextCursor: null — do not infer end of stream from a short page.

limit
integer
default:400

Maximum number of devices to return per page. Default and maximum are both 400.

Required range: 1 <= x <= 400

Response

A page of device sync statuses

data
object[]
nextCursor
string | null

Opaque cursor for the next page, or null if this is the last page.