Interface InitiateResetPasswordRequest

interface InitiateResetPasswordRequest {
    email?: string;
    mobile?: string;
    phone?: string;
    processingType: ProcessingType;
    provider?: string;
    requestId?: string;
    resetMedium: ResetMedium;
    resetPasswordId?: string;
    sub?: string;
    username?: string;
}

Properties

email?: string

Email of the user

mobile?: string

Mobile number of the user

phone?: string

Phone number of the user

processingType: ProcessingType

defines whether the password can be resetted via email link or whether the user needs to enter a code to complete the reset password process.

provider?: string

Provider name indicating the origin of the social identity

requestId?: string

Request id returned from the authorization call

resetMedium: ResetMedium

Type of medium to be used to reset password

resetPasswordId?: string

Id of the reset password process

sub?: string

Subject (User) identifier

username?: string

Username of the user