GET api/v1/Users/Me
Gets the logged in user
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
fields |
Use this to only return the data fields you're interested in. Field names not found are ignored and no error is thrown. If no fields are found then the full object is returned. |
Collection of string |
None. |
suppressResponseCodes |
Some applications do wonky things if error codes are used. Use this to force 200s to always return. |
boolean |
None. |
APIKey |
This is your unique key that identifies you as the developer of this app. Required for all calls. |
string |
None. |
APIToken |
This is the user's session token generated when you authenticate the user |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
UserName | Description | Type | Additional information |
---|---|---|---|
UserID |
User's ID |
globally unique identifier |
None. |
FirstName |
User's first name |
string |
None. |
LastName |
User's last name |
string |
None. |
ImageURL |
URL to access user's image |
string |
None. |
loginName |
User's login name |
string |
None. |
ImageSettings |
Cropping settings for user's image |
string |
None. |
IsDeleted |
Has this user been deleted? |
boolean |
None. |
Response Formats
application/json, text/json
{ "UserID": "7750ee5d-8780-4e86-b120-bd74038e3f80", "FirstName": "sample string 2", "LastName": "sample string 3", "ImageURL": "sample string 4", "loginName": "sample string 5", "ImageSettings": "sample string 6", "IsDeleted": true }