POST /api/NormalUser/ResetPassword
curl \
 --request POST 'http://alzaware.runasp.net/api/NormalUser/ResetPassword' \
 --header "Content-Type: application/json" \
 --data '{"newPassword":"string","confirmNewPassword":"string"}'
curl \
 --request POST 'http://alzaware.runasp.net/api/NormalUser/ResetPassword' \
 --header "Content-Type: text/json"
curl \
 --request POST 'http://alzaware.runasp.net/api/NormalUser/ResetPassword' \
 --header "Content-Type: application/*+json"
Request examples
{
  "newPassword": "string",
  "confirmNewPassword": "string"
}