Validates if a given email address is properly formatted and valid
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"
}JWT-based authentication
The email address to validate
The email address to validate
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"
}