Interface MultifactorChallengeOptions

Options for multifactor challenge.

interface MultifactorChallengeOptions {
    authenticatorId?: string;
    challengeType?: string;
    mfaToken: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

authenticatorId?: string

The ID of the authenticator to challenge.

challengeType?: string

A whitespace-separated list of the challenges types accepted by your application. Accepted challenge types are oob or otp. Excluding this parameter means that your client application accepts all supported challenge types.

mfaToken: string

The token received in the previous login response

Generated using TypeDoc