curl --request POST \
--url https://api.example.com/auth/send-forgot-password-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}Call to send out an email for the user to reset their password.
curl --request POST \
--url https://api.example.com/auth/send-forgot-password-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"success": true,
"data": "<unknown>"
}