curl --request POST \
--url https://api.faces.sh/auth/forgot-password \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"success": true,
"messages": [],
"data": {},
"error": "<string>",
"meta": {}
}Send a password-reset email. Always returns 200 to avoid email enumeration.
curl --request POST \
--url https://api.faces.sh/auth/forgot-password \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"success": true,
"messages": [],
"data": {},
"error": "<string>",
"meta": {}
}