Alokai

ResetPassword

Request body parameter that contains details such as token and new password ResetPassword

export interface ResetPassword {
	'newPassword': string;
	'token': string;
}

Properties

NameRequiredTypeDescription
newPasswordRequiredstringnew password string which is required to complete process of resetting password {string} ResetPassword
tokenRequiredstringtoken value which will be generated as unique string that will be sent with email to allow user for completing reset-password operation {string} ResetPassword

On this page