Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
Lauren Padia edited this page Mar 22, 2017 · 5 revisions

User Guide | Data Model


A user object encapsulates information about a principal user.

Field Name Type Description
id bigint ID of the user object
createdById bigint ID of the principal who created the user
createdDate long Timestamp at which the user was created
modifiedById bigint ID of the principal who last modified the user
modifiedDate long Timestamp at which the user was last modified
userName string Username of the principal
email string Email address of the principal
preferences map<preference,string> Key-value preferences
ownedDashboards bigint[] Dashboard IDs that belong to the user
privileged boolean Authorized to perform privileged actions
Example: User Entity
{
  "id": 1,
  "createdById": null,
  "createdDate": 1420666589299,
  "modifiedById": null,
  "modifiedDate": 1444405163287,
  "userName": "admin",
  "email": "admin@somecompany.com",
  "preferences": {},
  "ownedDashboardIds": [
    101207,
    100903
  ],
  "privileged": true
}