Skip to main content
POST
/
api
/
auth
/
email
/
send-reset-password
Send password reset (code or link based on config)
curl --request POST \
  --url https://api.example.com/api/auth/email/send-reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "success": true,
  "message": "If your email is registered, we have sent you a password reset code/link. Please check your inbox."
}

Body

application/json
email
string<email>
required

Response

Password reset email sent (if email exists). Message varies based on configured method.

success
boolean
message
string
Example:

"If your email is registered, we have sent you a password reset code/link. Please check your inbox."