English
cURL
curl --request POST \ --url https://demo.enneo.ai/api/mind/validation/email \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "value": "[email protected]" } '
{ "valid": true, "reason": "Invalid email address format" }
Validates if a given email address is properly formatted and valid
JWT-based authentication
The email address to validate
"[email protected]"
Validation result
Whether the email address is valid
true
The reason why the email address is invalid (only present if valid is false)
"Invalid email address format"