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

Documentation Index

Fetch the complete documentation index at: https://docs.quader864.ir/llms.txt

Use this file to discover all available pages before exploring further.

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