Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

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