GET api/CRM/GetEmailValidation?email={email}
Validate an emailaddress against an external validation service.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
|
The emailaddress to validate |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Response object containing the validation result
ResponseOfEmailValidationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | EmailValidationResponse |
None. |
|
| Result | boolean |
None. |
|
| Message | string |
None. |
|
| Errors | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"$id": "2",
"Valid": 1,
"Status": "sample string 2",
"Substatus": "sample string 3"
},
"Result": true,
"Message": "sample string 2",
"Errors": {
"$id": "3"
}
}