Get the requesting user
GET /io/user/me
Returns data for the requesting user.
Example Request
curl -X GET \ https://myaccount.leankit.com/io/user/me' \ -H 'Authorization: Basic base64encodedauth' \
Example Successful Response
200 Success
{
    "id": "25012",
    "username": "user1@mycompany.com",
    "firstName": "User",
    "lastName": "One",
    "fullName": "User One",
    "emailAddress": "user1@mycompany.com",
    "lastAccess": "2018-10-19T19:47:24.890Z",
    "dateFormat": "MM/dd/yyyy",
    "administrator": true,
    "enabled": true,
    "deleted": false,
    "organizationId": "10187654101",
    "boardCreator": true,
    "timeZone": "America/Los_Angeles",
    "licenseType": "full",
    "externalUserName": "user1@mycompany.com",
    "teamManager": false,
    "externalUser": false,
    "planviewUserId": null,
    "avatar": "https://mycompany.leankit.com/avatar/show/25012/?s=25",
    "settings": {
        "recentBoards": [
            10100191700,
            10112868410
        ],
        "useMondayForCalendarWeekViewStart": false,
        "locale": "en-US",
        "joeleanOptInDate": "2020-07-06T17:42:44.808Z",
        "favoriteBoards": [
            20200292700,
            20222868410
        ]
    },
        "avatarBounds": "\"0, 0, 352, 352\"",
        "theme": "legacy",
        "cardLayout": "modern"
    },
    "boardRoles": [
        {
            "boardId": "10100000505",
            "WIP": null,
            "role": {
                "key": "boardReader",
                "value": 1,
                "label": "Reader"
            }
        }
    ]
}
Response Properties
| Property | Type | Note | 
|---|---|---|
| id | string id | |
| username | string | |
| firstName | string | |
| lastName | string | |
| fullName | string | |
| emailAddress | string | |
| lastAccess | date | |
| dateFormat | string | |
| administrator | boolean | |
| enabled | boolean | |
| deleted | boolean | |
| organizationId | string | |
| boardCreator | boolean | |
| timeZone | string | |
| licenseType | string | full,reader, orfocused. Only present ifreaderorfocusedusers are enabled for the account | 
| externalUserName | string | |
| avatar | string | |
| settings | object | Contains a key/value hash of user settings | 
| boardRoles | array | Contains the user's access information for the organization's boards | 

