Summary

Gets information on all thin clients registered with the UMS instance.

This method will also list thin clients that are located in the Recycle Bin ("movedToBin":"true"), but you will not be able to call methods on those clients.

Resource URL

/v2/thinclients/

Example Request

curl \

--request GET \

https://[server]:8443/umsapi/v2/thinclients

Response Type

Returns a list of thin client resources, in the MainDataResource view plus

  • unitID
  • mac
  • firmwareID
  • lastIP

Example Response

[

{

"unitID": "00E0C54DCB8E",

"mac": "00E0C54DCB8E",

"firmwareID": "21",

"lastIP": "172.30.91.43",

"id": "27",

"name": "Curry",

"parentID": "-1",

"movedToBin": false,

"objectType": "tc",

"links": [

{

"rel": "self",

"href": "https://172.30.91.227:8443/umsapi/latest/thinclients/27"

},

{

"rel": "Parent",

"href": "root"

},

{

"rel": "Firmware",

"href": "https://172.30.91.227:8443/umsapi/latest/firmwares/21"

}

]

},

{

"unitID": "DC9C5207694E",

"mac": "DC9C5207694E",

"firmwareID": "13",

"lastIP": "172.30.91.24",

"id": "6888",

"name": "UD3 M340C_Board",

"parentID": "15592",

"movedToBin": false,

"objectType": "tc",

"links": [

{

"rel": "self",

"href": "https://172.30.91.227:8443/umsapi/latest/thinclients/6888"

},

{

"rel": "Parent",

"href": "https://172.30.91.227:8443/umsapi/latest/directories/tcdirectories/15592"

},

{

"rel": "Firmware",

"href": "https://172.30.91.227:8443/umsapi/latest/firmwares/13"

}

]

}

]