Retrieve summary information for a specific managed device

Open in ChatGPT Open in ChatGPT to ask questions about this page
Open in Claude Open in Claude to ask questions about this page
Copy as MarkdownCopy this page as markdown to use with AI assistants
View as Markdown Open this page as markdown in a new tab

Get the device specific summary

Request URL

https://{server-hostname}:8383/api/v1/mdm/devices/{device_id}/summary

Scope

MDMDeviceMgmt.READCopied!

Header

Authorization: d92d4xxxxxxxxxxxxx15f52

Request Parameters

- Request Headers

AcceptstringMandatory
application/jsonapplication/jsonCopied!

- Path Parameters

device_idstringMandatory

Unique identifier of the device. Obtain from the Get Device List response

Sample Request

Curl
Java
Python
Deluge
PowerShell
Copied!
curl --request GET \
  --url https://appdomain/api/v1/mdm/devices/{device_id}/summary \
  --header 'Accept: application/json' \
  --header 'Authorization:  d92d4xxxxxxxxxxxxx15f52'

Response Parameters

- HTTP code 200

Response Body - application/json
JSON Object
Hide Sub-Attributes
agent_versionstring

MDM agent version installed on the device

device_namestring

Assigned device name

doc_countstring

Number of documents on the device

device_idstring

Unique device identifier

group_countstring

Number of groups the device belongs to

platform_typestring

Platform type (e.g., android, ios, windows)

last_contact_timestring

Last contact time in milliseconds since epoch

profile_countstring

Number of profiles installed

app_countstring

Number of apps on the device

groupJSON Array

Array of groups the device belongs to

Show Sub-Attributes
JSON Object
Show Sub-Attributes
group_idstring

Unique identifier of the group

group_namestring

Name of the group

Possible Response Codes

200HTTP code

Sample Response: HTTP 200

Device summary with counts and group membership

Copied!
  {
    "agent_version": "9.2.432.A",
    "device_name": "admin_SM-G935F",
    "doc_count": "1",
    "device_id": "9007199254741001",
    "group_count": "2",
    "platform_type": "android",
    "last_contact_time": "1557128715277",
    "profile_count": "5",
    "app_count": "10",
    "group": [
      {
        "group_id": "9007199254741633",
        "group_name": "Test group 1557134860919"
      }
    ]
  }
                
Show full

Duration: 1 minute | Threshold: 120 | Lock period: 5 minutes

Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.