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
PersonRoleName | 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": "ee9d1cba-7cb2-4bca-8202-f690c5d28e3f", "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>ee9d1cba-7cb2-4bca-8202-f690c5d28e3f</PersonRole_ID> </PersonRole>