Get the User ID and user email for a user.
JSON Request Example:
/**
* Users::GetUser
*/
{
"username": "bob",
"usertoken": "abc123",
"requesttype": "Users",
"requestmethod": "GetUser"
}"json_request" element
| Field Name | Description |
| username | Username used to login to Pinpointe |
| usertoken | Unique token assigned to Pinpointe account |
| requesttype | Users |
| requestmethod | GetUser |
Successful Response:
"response" element
| Field Name | Description |
| status | Will return SUCCESS if a user was successfully found. |
| userid | Returns the user ID |
| username | Returns the user name |
| useremail | Returns the user's email address |
| webserver | Returns the webserver the user is on |
Unsuccessful Response:
"response" element
| Field Name | Description |
| status | Will return FAILED if unsuccessful |
| errormessage | Text explaining why request failed |