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

# LoginPayloadOptions

Options for performing login operations

```ts Example theme={null}
export interface LoginOptions {
  /** The username/email to login with */
  username: string;
  /** The password for authentication */
  password: string;
  /** Optional captcha value if required */
  captcha?: string;
  /** Any additional custom options */
  [key: string]: string | number | boolean | undefined;
}
```

## Indexable

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

Any additional custom options

## Properties

<ParamField body="captcha?" type="string">
  Optional captcha value if required
</ParamField>

<ParamField body="password" type="string">
  The password for authentication
</ParamField>

<ParamField body="username" type="string">
  The username/email to login with
</ParamField>
