GET api/v1/PersonRoles/{id}
Gets single role by its ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Person role ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PersonRole| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonRole_ID |
ID |
globally unique identifier |
None. |
| Name |
Name |
string |
None. |
| Description |
Description |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PersonRole_ID": "a0683ef8-9fa9-4077-bd76-f407cc99d900",
"Name": "sample string 2",
"Description": "sample string 3"
}
application/xml, text/xml
Sample:
<PersonRole xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus"> <Description>sample string 3</Description> <Name>sample string 2</Name> <PersonRole_ID>a0683ef8-9fa9-4077-bd76-f407cc99d900</PersonRole_ID> </PersonRole>