OBJECT

TotpStatus

Description

TOTP status for a user.

link GraphQL Schema definition

  • type TotpStatus {
  • # Specifies whether TOTP is enforced.
  • isEnforced: Boolean!
  • # Specifies whether TOTP is enforced at the user level.
  • isEnforcedUserLevel: Boolean!
  • # Specifies whether TOTP is enabled for the user.
  • isEnabled: Boolean!
  • # Specifies whether TOTP is supported for the user.
  • isSupported: Boolean!
  • # The timestamp of the last TOTP configuration update.
  • totpConfigUpdateAt: DateTime
  • }