Skip to main content
type InitiateTotpMfaResult = {
  method: "totp";
  authUrl: string;
  secret: string;
};
Result of TOTP MFA enrollment initiation.

Properties

PropertyTypeDescription
method"totp"The MFA method that was initiated.
authUrlstringThe otpauth:// URL for the authenticator app (for QR code generation).
secretstringThe base32-encoded TOTP secret (for manual entry).