Bulk Email Progress / Status
Get Bulk Email Progress Status
GET
https://api.saino.io/api/apis/email-cleaning/bulk-progress
This endpoint allows you to get progress of bulk email cleaning progress.
Query Parameters
Name
Type
Description
bulk_id
integer
Bulk process id which you got from bullk email cleaning api response.
Headers
Name
Type
Description
token
string
The token provided by saino application.
{
"data": {
"bulk_id": 1002,
"status": "completed",
"percentage": 100,
"download_link": "https://sfeclean.s3.ap-south-1.amazonaws.com/email-cleaner/report/final_verified_8961ea-2017-421a-a919-a1b2183ad86f_test1.csv.csv"
},
"status": "success"
}
Examples
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://api.saino.io/api/apis/email-cleaning/bulk-progress?bulk_id=95',
'headers': {
'token': '7yq7x1hlydj8hyxccf61al5411m==/twidh969f9584683074',
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
Last updated
Was this helpful?