PUT /v3/thinclients/{tcId}
Summary
Updates properties of the specified thin client
Resource URL
/v3/thinclients/{tcId}
Example Request
curl \
--request PUT \
--header "Content-type: application/json" \
--data '{"name":"reception thin client", \
"site":"main campus"}' \
https://[server]:8443/umsapi/v3/thinclients/123
Request Path Variables
Name | Type | Mandatory | Description |
| String | yes | thin client ID |
Request Body
General Device Attributes
Name | Type | Mandatory | Description |
| String | no | thin client name |
| String | no | site of operation |
| String | no | department |
| String | no | cost center |
| String | no | last known IP of thin client |
| String | no | comment field |
| String | no | asset ID |
| String | no | |
| String | no | serial number of thin client |
Custom Device Attributes
These device attributes are available with UMS 6.10 or higher and IGEL OS 11.07 or higher. Note that the overwrite rule and the string type must be set correctly. For details, see Universal Management Suite > Universal Managment Suite (UMS) > UMS Reference Manual > UMS Administration > Global Configuration in the IGEL UMS > Managing Device Attributes for IGEL OS Devices in the IGEL UMS
Name | Type | Mandatory | Description |
| Array | no | contains the |
| String | no | UMS internal identifier of the device attribute; see Universal Management Suite > Universal Managment Suite (UMS) > UMS Reference Manual > UMS Administration > Global Configuration in the IGEL UMS > Managing Device Attributes for IGEL OS Devices in the IGEL UMS |
| String or number or date | no | value of the device attribute |
Example body:
{
"deviceAttributes": [
{
"identifier": "location",
"value": "San Francisco"
},
{
"identifier": "country",
"value": "US"
}
]
}
Response Type
Returns a success message.
Example Response
{
"message": "Update successful"
}