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

# PasskeyEnrollment

> Describes all the hooks and methods available to customize the Universal Login `passkey-enrollment` screen.

The `passkey-enrollment` screen is displayed when a user is prompted to enroll a passkey as an authentication method. It allows the user to continue with passkey enrollment or abort the process.

<Frame>
  <img style={{maxHeight:"400px"}} src="https://mintcdn.com/docs-dev-docs-event-stream-action-templates/RjB12i6aOVmBONJv/docs/images/cdy7uua7fh8z/7haU4kXN2y0zikB9kanO8J/f32a48edc265d906aa063de96e9f3b89/Passkey_Enrollment.png?fit=max&auto=format&n=RjB12i6aOVmBONJv&q=85&s=f31906ba339a41e93706e0b45682fd20" alt="ACUL Passkey Enrollment" width="411" height="623" data-path="docs/images/cdy7uua7fh8z/7haU4kXN2y0zikB9kanO8J/f32a48edc265d906aa063de96e9f3b89/Passkey_Enrollment.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 { usePasskeyEnrollment } from '@auth0/auth0-acul-react';

// partial import
import {
  usePasskeyEnrollment,
  // Context hooks
  useUser,
  useTenant,
  useBranding,
  useClient,
  useOrganization,
  usePrompt,
  useScreen,
  useTransaction,
  useUntrustedData,
  // Common hooks
  useCurrentScreen,
  useAuth0Themes,
  useErrors,
  // Utility hooks
  useChangeLanguage,
  // Methods
  continuePasskeyEnrollment,
  abortPasskeyEnrollment,
  doNotShowAgain,
} from '@auth0/auth0-acul-react/passkey-enrollment';

function PasskeyEnrollmentScreen() {
  const { continuePasskeyEnrollment } = usePasskeyEnrollment();
  return (
    <button onClick={() => continuePasskeyEnrollment()}>Enroll Passkey</button>
  );
}
```

## Context Hooks

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

<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 `passkey-enrollment` screen.

  ```jsx Example theme={null}
  import { useBranding } from '@auth0/auth0-acul-react/passkey-enrollment';
  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 `passkey-enrollment` screen.

  ```jsx Example theme={null}
  import { useClient } from '@auth0/auth0-acul-react/passkey-enrollment';
  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 passkey enrollment is Organization-scoped. Returns `null` when no Organization context is present.

  ```jsx Example theme={null}
  import { useOrganization } from '@auth0/auth0-acul-react/passkey-enrollment';
  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/passkey-enrollment';
  function FlowInfo() {
    const prompt = usePrompt();
  }
  ```
</ParamField>

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

  ```jsx Example theme={null}
  import { useScreen } from '@auth0/auth0-acul-react/passkey-enrollment';
  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/passkey-enrollment';
  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 `passkey-enrollment` screen, such as active connections and current flow state.

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

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

  ```jsx Example theme={null}
  import { useUntrustedData } from '@auth0/auth0-acul-react/passkey-enrollment';
  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/passkey-enrollment';
  function UserProfile() {
    const user = useUser();
  }
  ```
</ParamField>

<ParamField body="usePasskeyEnrollment" type={<a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/PasskeyEnrollmentMembers">PasskeyEnrollmentMembers</a>}>
  This hook returns all methods and context available on the `passkey-enrollment` screen.
</ParamField>

## Methods

<ParamField body="continuePasskeyEnrollment" type="Promise<void>">
  This method initiates the passkey enrollment process and continues the authentication flow.

  ```jsx Example theme={null}
  import { usePasskeyEnrollment } from '@auth0/auth0-acul-react/passkey-enrollment';

  function EnrollButton() {
    const { continuePasskeyEnrollment } = usePasskeyEnrollment();
    return (
      <button onClick={() => continuePasskeyEnrollment()}>
        Enroll Passkey
      </button>
    );
  }
  ```
</ParamField>

<ParamField body="abortPasskeyEnrollment" type="Promise<void>">
  This method cancels the passkey enrollment process and continues the authentication flow without enrolling a passkey.

  ```jsx Example theme={null}
  import { usePasskeyEnrollment } from '@auth0/auth0-acul-react/passkey-enrollment';

  function SkipButton() {
    const { abortPasskeyEnrollment } = usePasskeyEnrollment();
    return (
      <button onClick={() => abortPasskeyEnrollment()}>
        Skip for Now
      </button>
    );
  }
  ```
</ParamField>

<ParamField body="doNotShowAgain" type="Promise<void>">
  This method skips the passkey enrollment and saves the user's preference to not be prompted for passkey enrollment again.

  ```jsx Example theme={null}
  import { usePasskeyEnrollment } from '@auth0/auth0-acul-react/passkey-enrollment';

  function DoNotShowAgainButton() {
    const { doNotShowAgain } = usePasskeyEnrollment();
    return (
      <button onClick={() => doNotShowAgain()}>
        Don't show this again
      </button>
    );
  }
  ```
</ParamField>

## Common/Utility Hooks

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