Skip to content

mfaSetting

Get multifactor authentication (MFA) settings for an account.

Returns

GetMfaSettingReply!

Sample

query {
  mfaSetting {
    isTotpEnforcedGlobal
    isTotpGlobalEnforceLocked
    isTotpMandatory
    mandatoryTotpEnforcementDate
    mfaRememberHours
    totpReminderHours
  }
}
{}
{
  "data": {
    "mfaSetting": {
      "isTotpEnforcedGlobal": true,
      "isTotpGlobalEnforceLocked": true,
      "isTotpMandatory": true,
      "mandatoryTotpEnforcementDate": "2024-01-01T00:00:00.000Z",
      "mfaRememberHours": 0,
      "totpReminderHours": 0
    }
  }
}