AppUserDetails Data Type

Data class containing detailed information about logged user (i.a. last successful logged time, user time zone, langugae) .

Properties
name data type constraints description
login string  
firstName string  
lastName string  
lastFailedLoginIp string  
source UserSource  
language Language  
active boolean required
infoTourEnabled boolean required
endpointsOrganization NameAndGuid  
groups array of NameAndGuid  
appUserSettings AppUserSettingsDetails  
externalId string  
thirdPartyRestriction ThirdPartyRestriction  
guid string  
lastSuccessfulLogin number  
lastFailedLogin number  
uiTimeZone string  

Example

{
  "login" : "...",
  "firstName" : "...",
  "lastName" : "...",
  "lastFailedLoginIp" : "...",
  "source" : "KEYCLOAK",
  "language" : "PL",
  "active" : true,
  "infoTourEnabled" : true,
  "endpointsOrganization" : {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  },
  "groups" : [ {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }, {
    "guid" : "...",
    "name" : "..."
  } ],
  "appUserSettings" : {
    "pageSize" : 12345,
    "timeFormat" : 12345
  },
  "externalId" : "...",
  "thirdPartyRestriction" : "HORIZON",
  "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
  "lastSuccessfulLogin" : 1451649601000,
  "lastFailedLogin" : 1451677502000,
  "uiTimeZone" : "UTC"
}