Fetch Enrolled Device Count by OS (Android/iOS)

This document covers:

Overview

This API is used to retrieve count of devices enrolled in your organization, categorized by their operating system that is Android and iOS.

Resource

Device

Method

Post

Base URL

https://mdm.api.seqrite.com/ws/tpapi/v1-0/

Request URL/End Point

https://mdm.api.seqrite.com/ws/tpapi/v1-0/device/osversion

Authentication

QH_MDM_AUTH (tenant specific API key)

time zone

Response Status Code

Status Code Meaning Description
200 Successful The request was successful, and the response contains the requested data.
401 Unauthorised The request lacked valid authentication credentials.
404 Not Found The requested response could not be found.

Table of Parameters/Response Parameters

Parameter Data Type Value Description
id Integer
  • 0: Android
  • 1: iOS
Unique ID of OS
label String
  • Android
  • iOS
Enrolled device OS type
value Integer Total number of devices

Sample Response

{
“apiResponseStatus”: “SUCCESS”,
“pieChartData”: [
{
“id”: 0,
“label”: “Android”,
“value”: 9
},
{
“id”: 1,
“label”: “iOS”,
“value”: 1
}
] }

Was this page helpful?