curl --request POST \
--url https://api.mnemom.ai/v1/auth/password-reset-request \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"redirect_to": "<string>"
}
'{
"ok": true
}Always returns 200 on 4xx upstream responses (to avoid user enumeration). 5xx upstream errors surface as 5xx to the caller.
curl --request POST \
--url https://api.mnemom.ai/v1/auth/password-reset-request \
--header 'Content-Type: application/json' \
--data '
{
"email": "jsmith@example.com",
"redirect_to": "<string>"
}
'{
"ok": true
}