Skip to main content
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.
Example
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

code
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.
"123456"