ResetPassword
Request body parameter that contains details such as token and new password ResetPassword
export interface ResetPassword {
'newPassword': string;
'token': string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
newPassword | Required | string | new password string which is required to complete process of resetting password {string} ResetPassword |
token | Required | string | token value which will be generated as unique string that will be sent with email to allow user for completing reset-password operation {string} ResetPassword |