overview your first call subscribers mailing lists list ai campaigns sender profiles send campaign analytics insight

List Ai Controls and Functions

Topics covered:

Introduction

The integrated list cleaning engine, list ai helps your subscriber list perform to it's potential by removing: old, invalid, harmful and duplicate data. It is recommended that you request a list ai clean on all of your mailing lists every 30 days. Regular cleaning helps maintain a positive sender reputation and prevent wasting email sends on dead or invalid data. Via the API, you can quickly request custom list cleans or just remove duplicate data.

Remove Duplicates

Check and remove duplicate data inside a mailing list or across multiple mailing lists. A duplicate scan can be requested via the email blaster API by using a POST request to the following URL:

https://api.emailblaster.cloud/2.0/listai/dedupe

The request should be a JSON object containing the following information:

{
   "lists":"178,241,242",
   "group":"N"
}
lists => {list_id}. To dedupe multiple lists is separate each {list_id} with a comma.
group => Y/N.
Y = Group together and remove duplicates across multiple lists.
N = Dedupe separately, only remove duplicate that exist within a list.

After a successful job creation, the following JSON response will be returned:

{"status":"ok"}
Note: Once you have made your dedupe request, this will be added to your email blaster list ai jobs list. Normally you will receive a report to your contact email address within 10 minutes of making the request.

Mailing List Clean

It is recommended that you call a list ai clean on all lists every 30 days, or after adding new subscribers. Requesting a clean verifies all email addresses, removing invalid and dead data. A job can be created by making a POST request to the email blaster API at the following URL:

https://api.emailblaster.cloud/2.0/listai/clean

The request should be a JSON object containing the following information:

{
   "lists":"178,241,242",
   "consumers":"Y",
   "generics":"Y",
}
lists => {list_id}. To clean multiple lists is separate each {list_id} with a comma.
consumers => Y/N. Auto remove known consumer email addresses.
generics => Y/N. Auto remove generic info@ sales@ etc email addresses.

After a successful job creation, the following JSON response will be returned:

{"status":"ok"}
Note: Once you have made your clean request, this will be added to your email blaster list ai jobs list. Normally you will receive a report to your contact email address within 20 minutes of making the request.
cloud