GET /v3/masterprofiles/{profileid}/assignments/tcdirectories
Summary
Gets the device directories the priority profile (called "master profiles" before UMS 12) is assigned to.
Resource URL
/v3/masterprofiles/{profileid}/assignments/tcdirectories
Example Request
curl \
--request GET \
https://[server]:8443/umsapi/v3/masterprofiles/72098/assignments/tcdirectories
Request Path Variables
Name | Type | Mandatory | Description |
| String | yes | priority profile ID |
Response Type
Returns a list of Assignments.
Example Response
[
{
"assignee": {
"id": "72098",
"type": "masterprofile"
},
"receiver": {
"id": "76462",
"type": "tcdirectory"
},
"assignmentPosition": 0,
"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"
}
]
}
]