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

# LoginPayloadOptions

Options pour les opérations de connexion

```ts Example theme={null}
export interface LoginOptions {
  /** Le nom d’utilisateur ou le courriel à utiliser pour la connexion */
  username: string;
  /** Le mot de passe pour l'authentification */
  password: string;
  /** Valeur captcha facultative si requise */
  captcha?: string;
  /** Toute option personnalisée supplémentaire */
  [key: string]: string | number | boolean | undefined;
}
```

<div id="indexable">
  ## Indexable
</div>

\[`key`: `string`]: `string` | `number` | `boolean` | `undefined`

Toute option personnalisée supplémentaire

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

<ParamField body="captcha?" type="string">
  Valeur du captcha, si nécessaire
</ParamField>

<ParamField body="password" type="string">
  Le mot de passe utilisé pour l’authentification
</ParamField>

<ParamField body="username" type="string">
  Le nom d’utilisateur ou le courriel à utiliser pour la connexion
</ParamField>
