Check email exists (deprecated)
Check if an email exists Note that there is an invisible character at the end of the path, this was to avoid a conflict with the OpenAPI spec.
GET
/{apiBasePath}/{tenantId}/signup/email/exists⠀⠀deprecatedPath parameters
apiBasePathstringrequiredIts value depends on the apiBasePath set by the user
tenantIdstringThe tenant against which the request is made. If left empty, the default tenant will be used.
Query parameters
emailstringrequiredThe email address to check
Header parameters
ridstringThe passwordless recipe ID
Responses
200Checks if an email exists
One of:
object
statusstatusOKSuccess status indicator
Allowed:
OKexistsexistsWhether the resource exists
generalErrorResponse
statusstringError status code
Allowed:
GENERAL_ERRORmessagestringError message
404Resource not found error
string500Internal server error
stringTry it
Server
Parameters
Request
curl -X GET "/auth/public/signup/email/exists⠀⠀?email=johndoe%40gmail.com"const response = await fetch("/auth/public/signup/email/exists⠀⠀?email=johndoe%40gmail.com", {
method: "GET"
});import requests
response = requests.get(
"/auth/public/signup/email/exists⠀⠀?email=johndoe%40gmail.com",
)Response
{
"status": "OK",
"exists": true
}"Not Found""Internal Error"