Summary

Gets the profile and master profile assignments for the specified thin client, in order of their application.

Resource URL

/v3/thinclients/{tcId}/assignments/profiles

Example Request

curl \

--request GET \

https://[server]:8443/umsapi/v3/thinclients/48335/assignments/profiles

Request Path Variables

Name

Type

Mandatory

Description

id

String

yes

thin client ID

Response Type

Returns a list of Profile and Master Profile Assignments.

Example Response

[

{

"assignee": {

"id": "68257",

"type": "profile"

},

"receiver": {

"id": "48335",

"type": "tc"

},

"assignmentPosition": 0,

"links": [

{

"rel": "assigned",

"href": "https://172.30.91.227:8443/umsapi/v3/profiles/68257"

},

{

"rel": "receiver",

"href": "https://172.30.91.227:8443/umsapi/v3/thinclients/48335"

},

{

"rel": "self",

"href": "https://172.30.91.227:8443/umsapi/v3/profiles/68257/assignments/thinclients/48335"

}

]

},

{

"assignee": {

"id": "72063",

"type": "masterprofile"

},

"receiver": {

"id": "48335",

"type": "tc"

},

"assignmentPosition": 1,

"links": [

{

"rel": "assigned",

"href": "https://172.30.91.227:8443/umsapi/v3/masterprofiles/72063"

},

{

"rel": "receiver",

"href": "https://172.30.91.227:8443/umsapi/v3/thinclients/48335"

},

{

"rel": "self",

"href": "https://172.30.91.227:8443/umsapi/v3/masterprofiles/72063/assignments/thinclients/48335"

}

]

}

]