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

# MfaSmsChallenge

> Describes all the hooks and methods available to customize the Universal Login `mfa-sms-challenge` screen.

The `mfa-sms-challenge` screen prompts the user to enter a one-time code sent to their phone via SMS to complete MFA verification.

<Frame>
  <img style={{maxHeight:"400px"}} src="https://mintcdn.com/docs-dev-docs-event-stream-action-templates/5l8GTXHD40NsjgmL/docs/images/ja-jp/cdy7uua7fh8z/20G20ssvZiz0Z3OHp9QKmT/374f18dcf23be977240e53a51ea82012/Screenshot_2025-02-21_at_10.43.36.png?fit=max&auto=format&n=5l8GTXHD40NsjgmL&q=85&s=24fab091ad06e863f93ff410f53755d4" alt="MfaSmsChallenge" width="439" height="622" data-path="docs/images/ja-jp/cdy7uua7fh8z/20G20ssvZiz0Z3OHp9QKmT/374f18dcf23be977240e53a51ea82012/Screenshot_2025-02-21_at_10.43.36.png" />
</Frame>

## Import

Each screen has its own set of hooks and methods. The SDK supports **partial import** and **root import** for each screen.

* Using partial import allows you to include only the code you need for your specific use case.
* Using root import allows you to load all screens from a single bundle, which is useful when you want a unified build to handle all possible screens.

```jsx Import Example theme={null}
// root import
import { useMfaSmsChallenge } from '@auth0/auth0-acul-react';

// partial import
import {
  useMfaSmsChallenge,
  // Context hooks
  useUser,
  useTenant,
  useBranding,
  useClient,
  useOrganization,
  usePrompt,
  useScreen,
  useTransaction,
  useUntrustedData,
  // Common hooks
  useCurrentScreen,
  useAuth0Themes,
  useErrors,
  // Utility hooks
  useChangeLanguage,
  useResend,
  // Methods
  continueMfaSmsChallenge,
  getACall,
  pickSms,
  resendCode,
  tryAnotherMethod,
} from "@auth0/auth0-acul-react/mfa-sms-challenge";

function MfaSmsChallengeScreen() {
  const { continueMfaSmsChallenge } = useMfaSmsChallenge();
  return (
    <button onClick={() => continueMfaSmsChallenge({ code: '123456' })}>
      Verify Code
    </button>
  );
}
```

## Context Hooks

Screen-scoped hooks that provide read-only access to Auth0 context data on the `mfa-sms-challenge` screen. Import them from `@auth0/auth0-acul-react/mfa-sms-challenge`.

<ParamField body="useBranding" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/BrandingMembers">BrandingMembers</a></span>}>
  This hook provides branding configurations, such as logo, colors, and theme settings displayed on the `mfa-sms-challenge` screen.

  ```jsx Example theme={null}
  import { useBranding } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function CustomTheme() {
    const branding = useBranding();
  }
  ```
</ParamField>

<ParamField body="useClient" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/ClientMembers">ClientMembers</a></span>}>
  This hook provides client-related configurations, such as `id`, `name`, and `logoUrl`, for the `mfa-sms-challenge` screen.

  ```jsx Example theme={null}
  import { useClient } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function AppInfo() {
    const client = useClient();
  }
  ```
</ParamField>

<ParamField body="useOrganization" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/OrganizationMembers">OrganizationMembers</a></span>}>
  This hook provides information about the user's Organization if the MFA flow is Organization scoped. Returns `null` when no Organization context is present.

  ```jsx Example theme={null}
  import { useOrganization } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function OrgSelector() {
    const organization = useOrganization();
    if (!organization) {
      return <p>No organization context</p>;
    }
  }
  ```
</ParamField>

<ParamField body="usePrompt" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/PromptMembers">PromptMembers</a></span>}>
  This hook contains data about the current prompt in the authentication flow.

  ```jsx Example theme={null}
  import { usePrompt } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function FlowInfo() {
    const prompt = usePrompt();
  }
  ```
</ParamField>

<ParamField body="useScreen" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/ScreenMembersOnMfaSmsChallenge">ScreenMembersOnMfaSmsChallenge</a></span>}>
  This hook contains details specific to the `mfa-sms-challenge` screen, including its configuration and context.

  ```jsx Example theme={null}
  import { useScreen } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function ScreenDebug() {
    const screen = useScreen();
  }
  ```
</ParamField>

<ParamField body="useTenant" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/TenantMembers">TenantMembers</a></span>}>
  This hook contains data related to the tenant, such as `id` and associated metadata.

  ```jsx Example theme={null}
  import { useTenant } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function TenantInfo() {
    const tenant = useTenant();
  }
  ```
</ParamField>

<ParamField body="useTransaction" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/TransactionMembers">TransactionMembers</a></span>}>
  This hook provides transaction-specific data for the `mfa-sms-challenge` screen, such as the current MFA flow state.

  ```jsx Example theme={null}
  import { useTransaction } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function TransactionInfo() {
    const transaction = useTransaction();
  }
  ```
</ParamField>

<ParamField body="useUntrustedData" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/UntrustedDataMembersOnMfaSmsChallenge">UntrustedDataMembersOnMfaSmsChallenge</a></span>}>
  This hook handles untrusted data passed to the screen, such as prefilled values from URL parameters.

  ```jsx Example theme={null}
  import { useUntrustedData } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function PrefilledForm() {
    const untrustedData = useUntrustedData();
  }
  ```
</ParamField>

<ParamField body="useUser" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/UserMembers">UserMembers</a></span>}>
  This hook provides details of the active user, including `username`, `email`, and available authentication methods.

  ```jsx Example theme={null}
  import { useUser } from '@auth0/auth0-acul-react/mfa-sms-challenge';
  function UserProfile() {
    const user = useUser();
  }
  ```
</ParamField>

<ParamField body="useMfaSmsChallenge" type={<a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/MfaSmsChallengeMembers">MfaSmsChallengeMembers</a>}>
  This hook returns all methods and context available on the `mfa-sms-challenge` screen.
</ParamField>

## Methods

<ParamField body="continueMfaSmsChallenge" type="Promise<void>">
  This method submits the SMS one-time code to complete the MFA challenge.

  ```jsx Example theme={null}
  import { useMfaSmsChallenge } from '@auth0/auth0-acul-react/mfa-sms-challenge';

  function VerifyCodeForm() {
    const { continueMfaSmsChallenge } = useMfaSmsChallenge();
    return (
      <button onClick={() => continueMfaSmsChallenge({ code: '123456' })}>
        Verify Code
      </button>
    );
  }
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [MfaSmsChallengeOptions](/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/MfaSmsChallengeOptions).
    </ParamField>

    <ParamField body="code" type="string" required>
      The one-time code sent to the user's phone via SMS.
    </ParamField>

    <ParamField body="rememberDevice" type="boolean">
      Whether to remember the device and skip MFA on future logins.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="getACall" type="Promise<void>">
  This method switches the MFA challenge to a voice call instead of SMS.

  ```jsx Example theme={null}
  import { useMfaSmsChallenge } from '@auth0/auth0-acul-react/mfa-sms-challenge';

  function GetACallButton() {
    const { getACall } = useMfaSmsChallenge();
    return (
      <button onClick={() => getACall()}>
        Get a Call Instead
      </button>
    );
  }
  ```
</ParamField>

<ParamField body="pickSms" type="Promise<void>">
  This method navigates to the SMS phone number selection screen.

  ```jsx Example theme={null}
  import { useMfaSmsChallenge } from '@auth0/auth0-acul-react/mfa-sms-challenge';

  function PickSmsButton() {
    const { pickSms } = useMfaSmsChallenge();
    return (
      <button onClick={() => pickSms()}>
        Use a Different Phone Number
      </button>
    );
  }
  ```
</ParamField>

<ParamField body="resendCode" type="Promise<void>">
  This method resends the SMS one-time code to the user's phone.

  ```jsx Example theme={null}
  import { useMfaSmsChallenge } from '@auth0/auth0-acul-react/mfa-sms-challenge';

  function ResendCodeButton() {
    const { resendCode } = useMfaSmsChallenge();
    return (
      <button onClick={() => resendCode()}>
        Resend Code
      </button>
    );
  }
  ```
</ParamField>

<ParamField body="tryAnotherMethod" type="Promise<void>">
  This method navigates to the MFA method selection screen so the user can choose a different authentication factor.

  ```jsx Example theme={null}
  import { useMfaSmsChallenge } from '@auth0/auth0-acul-react/mfa-sms-challenge';

  function TryAnotherMethodButton() {
    const { tryAnotherMethod } = useMfaSmsChallenge();
    return (
      <button onClick={() => tryAnotherMethod()}>
        Try Another Method
      </button>
    );
  }
  ```
</ParamField>

## Common/Utility Hooks

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useResend">useResend</a>} type="Hooks">
  This hook manages resend cooldown state and logic for screens with resend code functionality.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useAuth0Themes">useAuth0Themes</a>} type="Hooks">
  This hook gets the current theme options with flattened configuration from branding context.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useChangeLanguage">useChangeLanguage</a>} type="Hooks">
  This hook returns a function for changing the display language on the current ACUL screen.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useCurrentScreen">useCurrentScreen</a>} type="Hooks">
  This hook gets the current screen context and state.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useErrors">useErrors</a>} type="Hooks">
  This hook reads and manages server, client, and developer errors on the screen.
</ParamField>
