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

# ContinueWithCodeOptionPayload

ContinueWithCodeOptions
description Options for the `continueWithCode` method on the Login Email Verification screen.
This operation is used when the user submits the verification code they received via email
to proceed with the authentication flow.

```ts Example theme={null}
export interface ContinueWithCodeOptions extends CustomOptions {
  /**
   * The verification code sent to the user's email. This is typically a short numeric
   * or alphanumeric string that the user must enter into the form.
   * @type {string}
   * @example "123456"
   * @example "ABCXYZ"
   */
  code: string;
}
```

## Indexable

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

## Properties

<ParamField body="code" type="string">
  The verification code sent to the user's email. This is typically a short numeric
  or alphanumeric string that the user must enter into the form.

  <CodeGroup>
    ```ts Example 1 theme={null}
    "123456"
    ```

    ```ts Example 2 theme={null}
    "ABCXYZ"
    ```
  </CodeGroup>
</ParamField>
