******* Sandbox (email result types) *********
- valid:valid@example.com
- safe-to-send:safe-to-send@example.com
- free:free@example.com
- rejected:rejected-email@example.com
- invalid domain:invalid-domain@example.com
- invalid email:invalid-email@example.com
- exceeded storage:exceeded-storage@example.com
- no mx record:no-mx-record@example.com
- did you mean:did-you-mean@example.com
- Timeout:timeout@example.com
- unexpected error:unexpected-error@example.com
- no connect:no-connect@example.com
- Unavailable:unavailable-smtp@example.com
- Temporarily blocked:temporarily-blocked@example.com
- Accept all:accept-all@example.com
- Disposable:disposable@example.com
- low credit:low-credit@example.com
GET api/Test?key={key}&email={email}&timeout={timeout}&recheck={recheck}
Test Call - to test the different responses (Does not update the DB , calles the sandbox url so the call don't consume credits)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
|
| string |
Required |
||
| timeout | integer |
Default value is 0 |
|
| recheck | boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
ResultModels| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Pass | boolean |
None. |
|
| Reason | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Pass": true,
"Reason": "sample string 3"
}
application/xml, text/xml
Sample:
<ResultModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EmailVerificationCenter.Models"> <Code>1</Code> <Pass>true</Pass> <Reason>sample string 3</Reason> </ResultModels>