Interface LoginWithOOBOptions

Options for logging in using an OOB code

interface LoginWithOOBOptions {
    bindingCode?: string;
    mfaToken: string;
    oobCode: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

bindingCode?: string

The code used to bind the side channel (used to deliver the challenge) with the main channel you are using to authenticate. This is usually an OTP-like code delivered as part of the challenge message.

mfaToken: string

The token received in the previous login response

oobCode: string

The out of band code received in the challenge response.

Generated using TypeDoc