User Data Type

User object, representing a SystemUser in GCN

Properties
name data type description
id number User ID
firstName string Firstname
lastName string Lastname
description string Description
email string eMail Adress
groups array of Group Groups the user is member of
login string Login name
password string Return the plaintext password.

Example

{
  "id" : 12345,
  "firstName" : "...",
  "lastName" : "...",
  "description" : "...",
  "email" : "...",
  "groups" : [ {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "children" : [ { }, { } ]
  }, {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "children" : [ { }, { } ]
  } ],
  "login" : "...",
  "password" : "..."
}