GraphQL OBJECT

UserAccountSearchResultItem

User account that matches the search parameters.

link Definition

  • type UserAccountSearchResultItem {
  • # Unique ID of the user.
  • id: Int!
  • # Unique name of the user.
  • userName: String
  • # First name of the user.
  • firstName: String
  • # Last name of the user.
  • lastName: String
  • # Email of the user.
  • email: String
  • # Unique sso email of the user.
  • ssoEmail: String
  • # Company of the user.
  • company: String
  • # User type.
  • userType: UserAccountType
  • # User status.
  • userStatus: UserAccountStatus
  • # Office information for the user.
  • office: Office
  • # Department information for the user.
  • department: Department
  • # Client to whose organization the user belongs.
  • client: Client
  • # Date and time when user account was created.
  • dateCreated: DateTime
  • # Date and time when user account was modified.
  • dateModified: DateTime
  • # Latest date and time when user account was logged in.
  • lastLoginDate: DateTime
  • # Privileges of the user.
  • privileges: [PrivilegeSetSearchResultItem]
  • # User that created the searched user.
  • createdBy: UserAccount
  • # User that modified the searched user.
  • modifiedBy: UserAccount
  • }