Interface PasswordlessLoginRequest

interface PasswordlessLoginRequest {
    q?: string;
    requestId: string;
    status_id: string;
    sub?: string;
    verificationType: VerificationType;
}

Properties

q?: string

Masked sub (id of user) Either sub or q have to be provided, depends on what is given from the query parameter.

requestId: string

Request id returned from the authorization call

status_id: string

Status id returned from MFA authentication

sub?: string

Masked sub (id of user) Either sub or q have to be provided, depends on what is given from the query parameter.

verificationType: VerificationType

Type of verification to be used to authenticate user