Summary
Gets the available device attributes for the specified endpoint device. This request is available as of IGEL OS 11.07.100.
This method will also list endpoint devices that are located in the Recycle Bin ("movedToBin":"true"), but you will not be able to call methods on those endpoint devices.
Resource URL
/v3/thinclients/{tcId}?facets=deviceattributes
Example Request
curl \
--request GET \
https://[server]:8443/umsapi/v3/thinclients/455?facets=deviceattributes
Response Type
Returns an Array of TCResourceV3 with full details.
Example Response
{
"unitID": "005056930CAD",
"mac": "005056930CAD",
"firmwareID": "19",
"lastIP": "192.168.30.106",
"deviceAttributes": [
{
"name": "Country",
"identifier": "country",
"value": "DE",
"type": "range",
"allowedValues": [
"DE",
"GB",
"US"
]
},
{
"name": "Location",
"identifier": "location",
"value": "Augsburg",
"type": "range",
"allowedValues": [
"Augsburg",
"Karlsruhe",
"San Francisco"
]
}
],
"id": "455",
"name": "ITC005056930CAD",
"parentID": "-1",
"movedToBin": false,
"objectType": "tc",
"links": []
}