GET api/usertitles/{id}
Get a User Title by the id
Request Information
Authentication
This method requires user authentication
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
(Required) |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
UserTitle| Name | Description | Type | Additional information |
|---|---|---|---|
| UserTitleId |
User Title Id. Primary key of the users title table. |
integer |
None. |
| UserTitleName |
User Title Name. |
string |
None. |
| IsPartOfManagementTeam |
Is Part Of Management Team? |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserTitleId": 1,
"UserTitleName": "sample string 2",
"IsPartOfManagementTeam": true
}