This IMI resource is available with UMS 6.10.110 or higher.

Summary

Gets the online status for all endpoint devices in the view with the id {viewId}.

This method will also list thin endpoint devices that are located in the Recycle Bin ("movedToBin":"true"), but you will not be able to call methods on those devices.
When you send this request, UMS cannot answer it from data in the database alone, but makes a network connection to each thin client, which may take some time.

Resource URL

/v3/thinclientview/{viewId}?facets=online

Example Request

curl \

--request GET \

https://[server]:8443/umsapi/v3/thinclients?facets=online

Response Type

Returns an Array of TCResourceV3 with their online status.

Example Response

[

{

"unitID": "00E0C514325B",

"mac": "00E0C514325B",

"firmwareID": "6",

"lastIP": "172.30.92.26",

"online": false,

"batteryLevel": 0,

"id": "95",

"name": "ITC00E0C514325B",

"parentID": "-1",

"movedToBin": false,

"objectType": "tc",

"links": []

},

{

"unitID": "000BCA050027",

"mac": "000BCA050027",

"firmwareID": "6",

"lastIP": "172.30.91.87",

"online": true,

"batteryLevel": 0,

"id": "47922",

"name": "ITC000BCA050027",

"parentID": "-1",

"movedToBin": false,

"objectType": "tc",

"links": []

}

]