Interface LoginWithEmailOptions

The options for completing the passwordless login with email request

interface LoginWithEmailOptions {
    audience?: string;
    code: string;
    email: string;
    scope?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

audience?: string

The API audience to request

code: string

The code numeric value (OTP)

email: string

The email where the link/code was received

scope?: string

The scopes to request

Generated using TypeDoc