Checks if an email address is already registered and returns provider information
cURL
curl --request POST \ --url http://localhost:3000/api/auth/check-email-exists \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]" } '
{ "exists": true, "providers": [ "<string>" ], "hasPassword": true }
The email address to check
Email check completed
Whether the email is already registered
List of authentication providers for this email
Whether the user has password authentication enabled