GET /v3/thinclients?facets=deviceattributes

Summary

Gets the available device attributes. 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?facets=deviceattributes

Example Request

curl \

--request GET \

https://[server]:8443/umsapi/v3/thinclients?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": "Division",
				"identifier": "division",
				"value": "First division",
				"type": "range",
				"allowedValues": [
					"First division",
					"Second division",
					"Third division"
				]
			},
			{
				"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": []
	},
	{
		"unitID": "85641000D308482019",
		"mac": "001558CDD1C0",
		"firmwareID": "2",
		"lastIP": "192.168.2.127",
		"deviceAttributes": [],
		"id": "3610",
		"name": "ITC001558CDD1C0",
		"parentID": "-1",
		"movedToBin": false,
		"objectType": "tc",
		"links": []
	}
]