This document covers:
- Overview
- Resource
- Method
- Base URL
- Request URL/End Point
- Authentication
- Response Status Code
- Table of Parameters/Response Parameters
- Sample Response
Overview
This API is used to retrieve count of devices enrolled in your organization, categorized by the agent version installed on them.
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/agentversion
Authentication
QH_MDM_AUTH (tenant specific API key)
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 | Unique ID of agent version | |
| label | String |
|
Agent version on device |
| value | Integer | Total number of devices |
Sample Response
{
“apiResponseStatus”: “SUCCESS”,
“pieChartData”: [
{
“id”: 0,
“label”: “03.07.01”,
“value”: 4
},
{
“id”: 1,
“label”: “03.08.02”,
“value”: 2
},
{
“id”: 2,
“label”: “”,
“value”: 2
},
{
“id”: 3,
“label”: “03.08.01”,
“value”: 1
},
{
“id”: 4,
“label”: “3.8.0”,
“value”: 1
}
] }