> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# ResetPasswordRequest

<Frame>
  <img style={{maxHeight:"400px"}} src="https://mintcdn.com/generaltranslationinc/ZBZaCyGCDGYmrL4v/docs/images/cdy7uua7fh8z/3sY6D83USU8smQ4ozQuNzP/6e856749303830f72b764f539918b8ab/Screenshot_2025-03-27_at_14.44.14.png?fit=max&auto=format&n=ZBZaCyGCDGYmrL4v&q=85&s=88aeb119c0c423d52ab8dc638510172a" alt="" width="394" height="528" data-path="docs/images/cdy7uua7fh8z/3sY6D83USU8smQ4ozQuNzP/6e856749303830f72b764f539918b8ab/Screenshot_2025-03-27_at_14.44.14.png" />
</Frame>

```ts Example theme={null}
import ResetPasswordRequest from "@auth0/auth0-acul-js/reset-password-request";
const resetPasswordRequest = new ResetPasswordRequest();
resetPasswordRequest.getLoginIdentifiers();
```

<div id="constructors">
  ## Constructeurs
</div>

<ParamField body="ResetPasswordRequest" type="Constructor" />

<div id="properties">
  ## Propriétés
</div>

<ParamField body="branding" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/BrandingMembers">BrandingMembers</a></span>} />

<ParamField body="client" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/ClientMembers">ClientMembers</a></span>} />

<ParamField body="organization" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/OrganizationMembers">OrganizationMembers</a></span>} />

<ParamField body="prompt" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/PromptMembers">PromptMembers</a></span>} />

<ParamField body="screen" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/ScreenMembersOnResetPasswordRequest">ScreenMembersOnResetPasswordRequest</a></span>} />

<ParamField body="tenant" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/TenantMembers">TenantMembers</a></span>} />

<ParamField body="transaction" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/TransactionMembersOnResetPasswordRequest">TransactionMembersOnResetPasswordRequest</a></span>} />

<ParamField body="untrustedData" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/UntrustedDataMembers">UntrustedDataMembers</a></span>} />

<ParamField body="user" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/UserMembers">UserMembers</a></span>} />

<ParamField body="screenIdentifier" type="string" />

<div id="methods">
  ## Méthodes
</div>

<ParamField body="backToLogin" type="Promise<void>">
  ```ts Example theme={null}
  import ResetPasswordRequest from '@auth0/auth0-acul-js/reset-password-request';

  const resetPasswordRequest = new ResetPasswordRequest();
  resetPasswordRequest.backToLogin();
  ```

  <Expandable title="Paramètres">
    <ParamField body="payload?" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/CustomOptions">CustomOptions</a></span>} />
  </Expandable>
</ParamField>

<ParamField body="getErrors" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/Error">Error</a>[]</span>}>
  Récupère le tableau des erreurs de transaction à partir du contexte, ou un tableau vide s'il n'y en a aucune.

  Un tableau d'objets d'erreur provenant du contexte de transaction.
</ParamField>

<ParamField body="getLoginIdentifiers" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/type-aliases/ScreenIdentifierType">ScreenIdentifierType</a>[]</span>}>
  **`Fonction utilitaire`**

  Obtient les types d'identifiants actifs pour l'écran reset-password-request.

  Un tableau des types d'identifiants actifs ou null si aucun n'est actif.

  ```typescript Example theme={null}
  import ResetPasswordRequest from "@auth0/auth0-acul-js/reset-password-request";
  const resetPasswordRequest = new ResetPasswordRequest();
  resetPasswordRequest.getLoginIdentifiers();
  ```
</ParamField>

<ParamField body="resetPassword" type="Promise<void>">
  ```ts Example theme={null}
  import ResetPasswordRequest from '@auth0/auth0-acul-js/reset-password-request';

  const resetPasswordRequest = new ResetPasswordRequest();
  resetPasswordRequest.resetPassword({ username: 'testuser' });
  ```

  <Expandable title="Paramètres">
    <ParamField body="payload" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/ResetPasswordRequestOptions">ResetPasswordRequestOptions</a></span>}>
      **Propriétés**

      <ParamField body="captcha?" type="string" />

      <ParamField body="username" type="string" />
    </ParamField>
  </Expandable>
</ParamField>
