Skip to content
Bhinav Sura edited this page Mar 25, 2016 · 4 revisions

User

The User object encapsulates information about a principal user.

Name Type Description
id bigint The unique ID of the user object.
createdById bigint The unique ID of the principal who created the user.
createdDate long The epoch timestamp at which the user was created.
modifiedById bigint The unique ID of the principal who last modified the user.
modifiedDate long The epoch timestamp at which the user was last modified.
userName string The username of the principal.
email string The email address of the principal.
preferences string{} A map of key value preferences.
ownedDashboards bigint[] A list of unique dashboard IDs that belong to the user.
privileged boolean Indicates if the user is authorized to perform privileged actions. This is a read only field.

Example User Entity:

{
  "id": 1,
  "createdById": null,
  "createdDate": 1420666589299,
  "modifiedById": null,
  "modifiedDate": 1444405163287,
  "userName": "admin",
  "email": "[email protected]",
  "preferences": {},
  "ownedDashboardIds": [
    101207,
    100903
  ],
  "privileged": true
}

Argus

Home
[Getting Started](Getting Started)
##[User Guide](User Guide)
Alerts
Annotations
Dashboards
Metrics
Namespaces
[Data Model](Data Model)

Transforms
[Web Service API](Web Service API)

  • [/alerts](Alerts Resource)
  • [/annotations](Annotation Resource)
  • [/audit](Audit Resource)
  • [/authentication](Authentication Resource)
  • [/collection](Collection Resource)
  • [/dashboards](Dashboard Resource)
  • [/discover](Discover Resource)
  • [/history](History Resource)
  • [/management](Management Resource)
  • [/metrics](Metrics Resource)
  • [/namespace](Namespace Resource)
  • [/users](Users Resource)

Contributing

Clone this wiki locally