Skip to content

globalMfaSetting

Get global multifactor authentication (MFA) for an account.

Returns

GetMfaSettingReply!

Sample

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