> ## 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.

# ResetPasswordMfaPushChallengePush

> Describes all the properties and methods available to customize the Universal Login `reset-password-mfa-push-challenge-push` screen.

The ResetPasswordMfaPushChallengePush class implements the `reset-password-mfa-push-challenge-push` screen functionality. This screen is displayed when a push notification has been sent to the user's device as part of the MFA step during a password reset flow.

<Frame>
  <img style={{maxHeight:"400px"}} src="https://mintcdn.com/docs-dev-actions-triggers-prototype/8yG0sorggbq9bIbi/docs/images/cdy7uua7fh8z/5ANIhgOJURo2z0YXmWKp7M/5f266f0a935c047d6159874cbfc2001a/Screenshot_2025-03-26_at_09.15.46.png?fit=max&auto=format&n=8yG0sorggbq9bIbi&q=85&s=c42eb77e917ee16765fa8446209c8578" alt="" width="364" height="556" data-path="docs/images/cdy7uua7fh8z/5ANIhgOJURo2z0YXmWKp7M/5f266f0a935c047d6159874cbfc2001a/Screenshot_2025-03-26_at_09.15.46.png" />
</Frame>

## Constructors

Create an instance of ResetPasswordMfaPushChallengePush screen manager:

```typescript Example theme={null}
import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
await resetPasswordMfaPushChallengePushManager.continue();
```

## Properties

<ParamField body="branding" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/BrandingMembers">BrandingMembers</a></span>}>
  Provides branding-related configurations, such as branding theme and settings.
</ParamField>

<ParamField body="client" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/ClientMembers">ClientMembers</a></span>}>
  Provides client-related configurations, such as `id`, `name`, and `logoUrl`, for the `reset-password-mfa-push-challenge-push` screen.
</ParamField>

<ParamField body="organization" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/OrganizationMembers">OrganizationMembers</a></span>}>
  Provides information about the user's Organization, such as `id` and `name`.
</ParamField>

<ParamField body="prompt" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/PromptMembers">PromptMembers</a></span>}>
  Contains data about the current prompt in the authentication flow.
</ParamField>

<ParamField body="screen" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/ScreenMembersOnResetPasswordMfaPushChallengePush">ScreenMembersOnResetPasswordMfaPushChallengePush</a></span>}>
  Contains details specific to the `reset-password-mfa-push-challenge-push` screen, including its configuration and context.
</ParamField>

<ParamField body="tenant" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/TenantMembers">TenantMembers</a></span>}>
  Contains data related to the tenant, such as `id` and associated metadata.
</ParamField>

<ParamField body="transaction" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/TransactionMembers">TransactionMembers</a></span>}>
  Provides transaction-specific data for the `reset-password-mfa-push-challenge-push` screen, such as active identifiers and flow states.
</ParamField>

<ParamField body="untrustedData" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/UntrustedDataMembers">UntrustedDataMembers</a></span>}>
  Handles untrusted data passed to the SDK, such as user input during the MFA challenge flow.
</ParamField>

<ParamField body="user" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/UserMembers">UserMembers</a></span>}>
  Details of the active user, including `username`, `email`, and `roles`.
</ParamField>

## Methods

<ParamField body="changeLanguage" type="Promise<void>">
  This method changes the display language of the Universal Login page.

  ```typescript Example theme={null}
  import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
  const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
  resetPasswordMfaPushChallengePushManager.changeLanguage({
    language: 'fr',
  });
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [LanguageChangeOptions](/docs/libraries/acul/js-sdk/Screens/interfaces/LanguageChangeOptions).
    </ParamField>

    <ParamField body="language" type="string" required>
      The locale code for the desired language (for example, `'en'`, `'fr'`, `'es'`).
    </ParamField>

    <ParamField body="persist?" type="&#x22;session&#x22;">
      When set to `'session'`, the selected language persists for the duration of the session.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="continue" type="Promise<void>">
  This method confirms the push notification challenge to continue the MFA step during the password reset flow.

  ```typescript Example theme={null}
  import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
  const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
  await resetPasswordMfaPushChallengePushManager.continue();
  ```
</ParamField>

<ParamField body="enterCodeManually" type="Promise<void>">
  This method switches the user to manual code entry instead of waiting for the push notification approval.

  ```typescript Example theme={null}
  import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
  const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
  await resetPasswordMfaPushChallengePushManager.enterCodeManually();
  ```
</ParamField>

<ParamField body="getErrors" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/Error">Error</a>[]</span>}>
  This method retrieves the array of transaction errors from the context, or an empty array if none exist.
</ParamField>

<ParamField body="pollingManager" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/MfaPushPollingControl">MfaPushPollingControl</a></span>}>
  This method starts and manages polling for the MFA push challenge. It repeatedly checks whether the push notification has been approved at the specified interval and invokes the `onCompleted` callback when approval is detected. HTTP 429 rate limit responses are handled internally — polling waits for the rate limit to reset before retrying.

  The returned [`MfaPushPollingControl`](/docs/libraries/acul/js-sdk/Screens/interfaces/MfaPushPollingControl) exposes `startPolling()`, `stopPolling()`, and `isRunning()` to manage the polling lifecycle.

  ```typescript Example theme={null}
  import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
  const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
  const control = resetPasswordMfaPushChallengePushManager.pollingManager({
    intervalMs: 5000,
    onCompleted: () => resetPasswordMfaPushChallengePushManager.continue(),
    onError: (error) => console.error('Polling error:', error),
  });

  control.startPolling();

  // Cancel polling if needed
  control.stopPolling();
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [MfaPollingOptions](/docs/libraries/acul/js-sdk/Screens/interfaces/MfaPollingOptions).
    </ParamField>

    <ParamField body="intervalMs?" type="number">
      The interval in milliseconds between polling attempts.
    </ParamField>

    <ParamField body="onCompleted?" type="() => void">
      Callback invoked when the push challenge is approved and polling stops automatically.
    </ParamField>

    <ParamField body="onError?" type="(error: Error) => void">
      Callback invoked if an error occurs during polling.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="resendPushNotification" type="Promise<void>">
  This method resends the push notification to the user's device.

  ```typescript Example theme={null}
  import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
  const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
  await resetPasswordMfaPushChallengePushManager.resendPushNotification();
  ```
</ParamField>

<ParamField body="tryAnotherMethod" type="Promise<void>">
  This method allows the user to select a different MFA method to complete the challenge.

  ```typescript Example theme={null}
  import ResetPasswordMfaPushChallengePush from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';
  const resetPasswordMfaPushChallengePushManager = new ResetPasswordMfaPushChallengePush();
  await resetPasswordMfaPushChallengePushManager.tryAnotherMethod();
  ```
</ParamField>
