OBJECT

AuthorizedPrincipal

Description

LDAP authorized principal.

link GraphQL Schema definition

  • type AuthorizedPrincipal {
  • # Principal Type.
  • principalType: PrincipalTypeEnum!
  • # Principal ID
  • id: String!
  • # ID of the authentication domain.
  • authDomainId: String!
  • # Name of the authentication domain.
  • authDomainName: String!
  • # Name of the principal.
  • name: String!
  • # Email address.
  • email: String
  • # Last login timestamp.
  • lastLogin: DateTime
  • # TOTP status for a LDAP principal.
  • totpStatus: LdapTotpStatus
  • # Lockout status for an LDAP principal.
  • lockoutStatus: LdapLockoutStatus
  • roles: [Role!]!
  • # Email notification configurations.
  • emailConfig: [EventDigest!]!
  • }