Send a password reset email to a user

POST /Api/Auth/SendPasswordReset

Query parameters

  • passwordResetUrl string
  • passwordResetTokenQueryKey string

Body

  • email string Required

    Minimum length is 1.

  • Additional properties are NOT allowed

Responses

  • 204

    No Content

POST /Api/Auth/SendPasswordReset
curl \
 -X POST https://app.lovassy.hu/Api/Auth/SendPasswordReset \
 -H "Content-Type: application/json" \
 -d '{"email":"string"}'
curl \
 -X POST https://app.lovassy.hu/Api/Auth/SendPasswordReset \
 -H "Content-Type: text/json"
curl \
 -X POST https://app.lovassy.hu/Api/Auth/SendPasswordReset \
 -H "Content-Type: application/*+json"
Request examples
{
  "email": "string"
}