Request: Email ID and New Password
{
email_id:
password:
}
Response: Boolean (true: password reset successfully false: Any issue while saving the new password)
{
result: true;
}
Acceptance Criteria:
Check if the Email ID exists in the database.
If the email ID exists, then update the password.
If password saved successfully return true, else false.
Request: Email ID and New Password { email_id: password: } Response: Boolean (true: password reset successfully false: Any issue while saving the new password) { result: true; }
Acceptance Criteria: