GraphQL OBJECT
UserAccountSearchResultItem
User account that matches the search parameters.
link Definition
- type UserAccountSearchResultItem {
- # Unique ID of the user.
- : Int!
- # Unique name of the user.
- : String
- # First name of the user.
- : String
- # Last name of the user.
- : String
- # Email of the user.
- : String
- # Unique sso email of the user.
- : String
- # Company of the user.
- : String
- # User type.
- : UserAccountType
- # User status.
- : UserAccountStatus
- # Office information for the user.
- : Office
- # Department information for the user.
- : Department
- # Client to whose organization the user belongs.
- : Client
- # Date and time when user account was created.
- : DateTime
- # Date and time when user account was modified.
- : DateTime
- # Latest date and time when user account was logged in.
- : DateTime
- # Privileges of the user.
- : [PrivilegeSetSearchResultItem]
- # User that created the searched user.
- : UserAccount
- # User that modified the searched user.
- : UserAccount
- }