GET v1/Users/{id}
Get a User.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
UserName | Description | Type | Additional information |
---|---|---|---|
Id |
The user ID. |
integer |
None. |
IsActive |
The status of the User |
boolean |
None. |
FirstName |
The user first name. |
string |
None. |
LastName |
The user last name. |
string |
None. |
JobTitle |
The user job title. |
string |
None. |
The user email. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1000, "isActive": true, "firstName": "Jane", "lastName": "Doe", "jobTitle": "Director", "email": "jane@domain.com" }