Skip to main content
Planview Customer Success Center

User Provisioning API: Get Information About a User

Getting Information About a User

GET /Users/:id

Retrieves information about a single user.

Parameters

  • id - the id of the user

Returns

  • 200 OK
  • 404 Not Found

Example response body:

{
    "id": "12345678",
    "externalId": "ABC234",
    "userName": "demo@user.com",
    "name": {
        "familyName": "User",
        "givenName": "Demo",
        "formatted": "Demo User"
    },
    "timezone": "America/Chicago",
    "active": true,
    "meta": {
        "created": "2017-08-22T20:49:43Z",
        "location": "https://myaccount.leankit.com/io/scim/v1/users/12345678"
    },
    "urn:scim:schemas:extension:leankit:user:1.0": {
        "licenseType": "full",
        "lastAccess": "2017-08-23T20:49:43Z",
        "administrator": false,
        "boardCreator": false,
        "dateFormat": "mm/dd/yyyy"
    }
}