AppUserListRecord Data Type

Data class containing general information about user.

Properties
name data type constraints description
login string  
firstName string  
lastName string  
groups array of NameAndGuid  
active boolean required
guid string  

Example

{
  "login" : "...",
  "firstName" : "...",
  "lastName" : "...",
  "groups" : [ {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }, {
    "guid" : "...",
    "name" : "..."
  } ],
  "active" : true,
  "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67"
}