PUT /v3/masterprofiles/{profileid}/assignments/thinclients/
Summary
Assigns a priority profile (called "master profiles" before UMS 12) to one or more devices.
Resource URL
/v3/masterprofiles/[profileid/assignments/thinclients/]
Example Request
curl \
--request PUT \
--header "Content-type: application/json" \
--data ' [{ "assignee": {
"id": "72066",
"type": "masterprofile"
},
"receiver": {
"id": "48335",
"type": "tc"}
}]' \
https://[server]:8443/umsapi/v3/masterprofiles/72066/assignments/thinclients/
Request Path Variables
Name | Type | Mandatory | Description |
| String | yes | priority profile ID |
Request Body
A list of Assignments
Response Type
Returns a success message.
Example Response
{
"message": "1 asssignments successfully assigned to thinclient <48335>"
}