Check for freemail.
POST/business/isfreemail
Checks whether the email address is from a free email provider.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
emailstringrequired
The email address that should be checked.
Example:
pa1928sch@hotmail.com
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
freeEmailProviderbooleanrequired
Whether the email provider is free.
Example:
true
providerstringrequired
The provider domain extracted from the email address.
Example:
hotmail.com
{
"freeEmailProvider": true,
"provider": "hotmail.com"
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}