Authentication
POST /auth/password/forgot Public
Request a password-reset code by email.
Always answers 202, whether or not the address has an account — this is deliberately not an email-enumeration oracle.
Body
emailstring required- Account email.Example
me@example.com
curl -X POST "https://freehire.me/api/v1/auth/password/forgot" \
-H 'Content-Type: application/json' \
-d '{"email":"me@example.com"}'