Get a single user
GET /io/user/:userId
Returns data for a single user.
Requires account administrator access.
Example Request
curl -X GET \ https://myaccount.leankit.com/io/user/25012' \ -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": {
        "useMondayForCalendarWeekViewStart": false,
        "locale": "en-US",
        "recentBoards": [
            10100191700,
            10112868410
        ]
        "joeleanOptInDate": "2021-03-17T12:37:51.720Z",
        "avatarBounds": "\"145, 90, 303, 248\"",
        "cardLayout": "compact"
    },
    "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, or focused. Only present if reader or focused users 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 | 

