Skip to main content
POST
/
password-recovery
/
send-link
curl -X POST https://api-verifier-2.onrender.com/password-recovery/send-link \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com"
  }'
{
  "success": true,
  "message": "If the email exists, a password reset link has been sent."
}

Request body

email
string
required
User’s email address

Response

success
boolean
Indicates if the request was processed
message
string
Generic success message (to prevent user enumeration)
curl -X POST https://api-verifier-2.onrender.com/password-recovery/send-link \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com"
  }'
{
  "success": true,
  "message": "If the email exists, a password reset link has been sent."
}