> ## Documentation Index
> Fetch the complete documentation index at: https://auth0-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# MfaSmsEnrollmentContinueOptions

Options for continuing with MFA SMS enrollment.

Extends `CustomOptions` to allow passing custom options alongside phone and captcha.

```ts Example theme={null}
export interface MfaSmsEnrollmentContinueOptions extends CustomOptions {
  phone: string;
  captcha?: string;
  [key: string]: string | number | boolean | undefined;
}
```

## Indexable

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

## Properties

<ParamField body="phone" type="string" required>
  The user's phone number for SMS enrollment.
</ParamField>

<ParamField body="captcha?" type="string">
  Optional CAPTCHA token for verification.
</ParamField>
