POST /api/NormalUser/ResetPassword

POST /api/NormalUser/ResetPassword

Query parameters

  • email string
  • token string

Body

  • newPassword string | null
  • confirmNewPassword string | null
  • Additional properties are NOT allowed

Responses

  • 200

    Success

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"
}