Request password reset instructions
POST
/users/password
Sends a password reset email to the given address. In paranoid mode (default), always returns success — even if the email is not registered — to prevent email enumeration. Blank email returns 422.
Request Body
application/json
JSON "user": { "email": "jane@example.com" }
{
}
Responses
Instructions sent (or paranoid success)
application/json
JSON "toast": { "title": "Instructions sent.", "message": [ "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." ], "variant": "success" }
{
}