INPUT_OBJECT

UpdateLockoutConfigInput

Description

Specifies the input required to update the lockout config by the admin.

link GraphQL Schema definition

  • input UpdateLockoutConfigInput {
  • # Specifies the number of failed login attempts allowed after which the account is
  • # locked.
  • loginAttemptsLimit: Int
  • # Specifies the validity of the current self service token.
  • selfServiceTokenValidityInMins: Int
  • # Specifies the number of times self-service is allowed to unlock the account.
  • selfServiceAttemptsLimit: Int
  • # Specifies whether self service is enabled for all users in this organization.
  • isSelfServiceEnabled: Boolean
  • # Specifies the time after which the account is unlocked automatically.
  • accountAutoUnlockDurationInMins: Int
  • # Specifies whether the account lockout feature is enabled on the UI.
  • isBruteForceLockoutEnabled: Boolean
  • # Specifies whether the auto unlock feature is enabled on the UI.
  • isAutoUnlockFeatureEnabled: Boolean
  • }

link Require by