> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ResetPasswordMfaPhoneChallengeTryAnotherMethodOptions

TryAnotherMethodOptions

```ts Example theme={null}
export interface TryAnotherMethodOptions extends CustomOptions {
  /**
   * The delivery method that was initially presented or selected on the current screen.
   * This is required by the API endpoint to correctly process the 'pick-authenticator' action.
   * - `sms`: Indicates the current screen was for SMS challenge.
   * - `voice`: Indicates the current screen was for Voice challenge.
   * @type {'sms' | 'voice'}
   */
  type: 'sms' | 'voice';
}
```

## Properties

<ParamField body="type" type="&#x22;sms&#x22; | &#x22;voice&#x22;">
  The delivery method that was initially presented or selected on the current screen.
  This is required by the API endpoint to correctly process the 'pick-authenticator' action.

  * `sms`: Indicates the current screen was for SMS challenge.
  * `voice`: Indicates the current screen was for Voice challenge.
</ParamField>
