Skip to main content
Options for continuing with MFA SMS enrollment. Extends CustomOptions to allow passing custom options alongside phone and captcha.
Example
export interface MfaSmsEnrollmentContinueOptions extends CustomOptions {
  phone: string;
  captcha?: string;
  [key: string]: string | number | boolean | undefined;
}

Indexable

[key: string]: string | number | boolean | undefined

Properties

phone
string
required
The user’s phone number for SMS enrollment.
captcha?
string
Optional CAPTCHA token for verification.