Properties
| Property | Type | Description |
|---|---|---|
mfaMethod | MfaMethod | - |
mfaCode | string | The 6-digit MFA code from the authenticator app (TOTP) or from SMS. |
idempotencyKey? | string | Optional idempotency key for safe retries. |
type SubmitMfaEnrollmentOptions = {
mfaMethod: MfaMethod;
mfaCode: string;
idempotencyKey?: string;
};
| Property | Type | Description |
|---|---|---|
mfaMethod | MfaMethod | - |
mfaCode | string | The 6-digit MFA code from the authenticator app (TOTP) or from SMS. |
idempotencyKey? | string | Optional idempotency key for safe retries. |
Was this page helpful?