GET users/{userid}
Get a single user on the account by their ID, including their name, email address, last login and admin status. Admin users can retrieve any user; non-admins can only retrieve their own record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userid | The ID of the user you want to retrieve. | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Get a single user on the account by their ID, including their name, email address, last login and admin status. Admin users can retrieve any user; non-admins can only retrieve their own record.
UserDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Email address of the User | string | None. | |
| LastLoggedIn | Date and time the User last logged in, or null if they have never logged in | date | None. |
| IsAdmin | Whether the User is an administrator | boolean | None. |
| UserID | ID of a User | integer | None. |
| UserName | Name Associated with User | string | None. |