-
POST /email-validations/with a list of emails that will be validated -
In the response, follow the URL provided in
response._links.self.href -
Continue polling the endpoint while respecting the
Retry-AfterHTTP Header -
When validation completes, the results are in
response.results -
If the results are larger than the default limit, then follow the URL provided in
response._links.next.href
Email Validation Object
Email Validation Result Object
Email Validation Endpoints
Start Email Validation
Request A batch of emails can be sent to the email validation service, up to 100,000 entries:202 Accepted indicating that the email validation will soon be started:
Location:GETpoints back to the email validations object that was created
self-GETpoints back to the email validations object that was created
Email Validation Polling
Request The Email Validation object can be polled in order to receive results:200 OK while the operation hasn’t yet terminated.
Retry-After- indicates how long to wait until performing anotherGETrequest
-
self-GETpoints back to the same object -
next-GETpoints to the next page of entries, when available -
prev-GETpoints to the previous page of entries, when available
Retrieving Email Validation Results
Request When the email validation operation has terminated, the results can be retrieved using the same url:response._links.next.href (e.g. GET /email-validations/1?page[size]=100&page[after]=foo@example.com).
Links
-
self-GETpoints back to the same object -
next-GETpoints to the next page of entries, when available -
prev-GETpoints to the previous page of entries, when available
Cancelling a running Email Validation operation
Request You can cancel an email validation operation that’s still running by sending aPATCH request:
"status" is supported in this request, any other field will be ignored.
Response
The response will display any available results up until the point the email validation operation was canceled.
response._links.next.href (e.g. GET /email-validations/1?page[size]=100&page[after]=foo@example.com).
Links
-
self-GETpoints back to the same object -
next-GETpoints to the next page of entries, when available -
prev-GETpoints to the previous page of entries, when available