POST /auth/forgot-password
비밀번호 재설정 메일을 보냅니다. 공개 엔드포인트이며 인증이 필요하지 않습니다.
요청 본문
요청 접수 여부입니다. 보안상 이메일이 시스템에 없어도 항상 true입니다.
curl -X POST https://api.llmgenerator.com/api/v1/auth/forgot-password \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com"
}'
{
"success": true,
"message": "If an account with that email exists, a password reset link has been sent."
}