Interface LoginWithOTPOptions

Options for logging in using an OTP code

interface LoginWithOTPOptions {
    audience?: string;
    mfaToken: string;
    otp: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

audience?: string

The API audience

mfaToken: string

The token received in the previous login response

otp: string

The one time password code provided by the resource owner, typically obtained from an MFA application such as Google Authenticator or Guardian.

Generated using TypeDoc