GET /v3/directories/tcdirectories/{id}/assignments/profiles
Summary
Gets the profile and master profile assignments for the specified thin client directory, in order of their application.
Resource URL
/v3/directories/tcdirectories/{id}/assignments/profiles
Example Request
curl \
--request GET \
https://[server]:8443/umsapi/v3/directories/tcdirectories/76462/assignments/profiles
Request Path Variables
Name | Type | Mandatory | Description |
| String | yes | Thin Client Directory ID |
Response Type
Returns a list of Profile and Master Profile Assignments.
Example Response
[
{
"assignee": {
"id": "35549",
"type": "profile"
},
"receiver": {
"id": "76462",
"type": "tcdirectory"
},
"assignmentPosition": 0,
"links": [
{
"rel": "assigned",
"href": "https://172.30.91.227:8443/umsapi/v3/profiles/35549"
},
{
"rel": "receiver",
"href": "https://172.30.91.227:8443/umsapi/v3/directories/tcdirectories/76462"
},
{
"rel": "self",
"href": "https://172.30.91.227:8443/umsapi/v3/profiles/35549/assignments/tcdirectories/76462"
}
]
},
{
"assignee": {
"id": "72098",
"type": "masterprofile"
},
"receiver": {
"id": "76462",
"type": "tcdirectory"
},
"assignmentPosition": 1,
"links": [
{
"rel": "assigned",
"href": "https://172.30.91.227:8443/umsapi/v3/masterprofiles/72098"
},
{
"rel": "receiver",
"href": "https://172.30.91.227:8443/umsapi/v3/directories/tcdirectories/76462"
},
{
"rel": "self",
"href": "https://172.30.91.227:8443/umsapi/v3/masterprofiles/72098/assignments/tcdirectories/76462"
}
]
}
]