Skip to main content
function submitMfaVerification(options: SubmitMfaVerificationOptions): Promise<void>;
Submits an MFA code to complete the verification process.

Parameters

ParameterTypeDescription
optionsSubmitMfaVerificationOptionsThe options for the verification.

Returns

Promise<void> A promise that resolves if MFA verification is successful.

Example

await submitMfaVerification({
  mfaMethod: "totp",
  mfaCode: "123456"
});