Skip to main content
POST
/
api
/
v2
/
auth
/
forgot-password
Forgot Password
curl --request POST \
  --url https://api.example.com/api/v2/auth/forgot-password
{ "email": "user@example.com" }
Always returns 200 OK (prevents user enumeration). Reset link expires in 1 hour. Then reset the password:
POST /api/v2/auth/reset-password
{"token": "from_email", "new_password": "new_secure_password"}