Bulk Email

Bulk email cleaning is a process where you can upload any .txt / .csv / .xlsx file for email cleaning. At one time the only one file can be accepted over API.

The file must be less than 15MB in size and includes a maximum of 100,000 emails.

The header of the email column inside file should be "emails" for identification of email list inside the file.

Bulk Email Clean

POST https://api.saino.io/api/apis/email-cleaning/verify-bulk

This endpoint allows you to upload bulk email file for cleaning

Headers

NameTypeDescription

token

string

The token provided by Saino application

Request Body

NameTypeDescription

file

object

your .csv/.txt/.xlsx file in form-data format (blob format)

{
     status: "success",
     bulk_id: 1002,
     message: "Successfully added in queue"
}

Examples

var request = require('request');
var fs = require('fs');
var options = {
  'method': 'POST',
  'url': 'https://api.saino.io/api/apis/email-cleaning/verify-bulk',
  'headers': {
    'token': '7yq7x1hlydj8hyxccfg6dy6rdmc61al5411mtwid609584683074',
  },
  formData: {
    'file': {
      'value': fs.createReadStream('/path-to-file/test1.csv'),
      'options': {
        'filename': 'test1.csv',
        'contentType': null
      }
    }
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

Last updated