Documentation Index
Fetch the complete documentation index at: https://auth0-feat-ionic-capacitor-quickstart-modernization.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Interface describing the members of the Mfa Voice Enrollment screen.
export interface MfaVoiceEnrollmentMembers extends BaseMembers {
client: ClientMembers;
organization: OrganizationMembers;
prompt: PromptMembers;
screen: ScreenMembers;
transaction: TransactionMembers;
/**
* Continues with the voice enrollment process.
* @param payload - The phone number and optional custom options.
* @returns Promise that resolves when enrollment continues.
*/
continue(payload: ContinueOptions): Promise<void>;
/**
* Allows trying another authentication method.
* @param payload - Optional custom options.
* @returns Promise that resolves when the user switches method.
*/
tryAnotherMethod(payload?: CustomOptions): Promise<void>;
/**
* Allows picking a country code for the phone number.
* @param payload - Optional custom options.
* @returns Promise that resolves when the country code is selected.
*/
selectPhoneCountryCode(payload?: CustomOptions): Promise<void>;
}
Properties
Methods
Continues with the voice enrollment process.Promise that resolves when enrollment continues.
The phone number and optional custom options.Properties
Allows picking a country code for the phone number.Promise that resolves when the country code is selected.
Allows trying another authentication method.Promise that resolves when the user switches method.