Skip to main content
POST
https://api.usegately.com
/
api
/
v1
/
auth
/
password-reset
curl -X POST "https://api.usegately.com/api/v1/auth/password-reset" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "redirect_url": "https://mysite.com/reset-password"
  }'
{
  "success": true,
  "message": "If an account exists for this email, a password reset link has been sent."
}
Send a password reset email to a user.

Request Body

email
string
required
Email address of the user
redirect_url
string
URL to redirect after password reset

Response

success
boolean
Always returns true for security (doesn’t reveal if email exists)
message
string
Confirmation message
curl -X POST "https://api.usegately.com/api/v1/auth/password-reset" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "redirect_url": "https://mysite.com/reset-password"
  }'
{
  "success": true,
  "message": "If an account exists for this email, a password reset link has been sent."
}