This endpoint allows you to start verification of the bulk email list created. The list can start to be verified only once and the status of the list must be ‘ready’ for verification, also the auto_verify was not enabled while uploading a list. After starting verification you can check the status of the list. Once the verification of the list gets ‘completed’ you can download the result in CSV format.

Successful Response

HTTP/1.1 200 OK
{
    "job_id": "r374aki32rnatv868nntpxloc7dkilszc3eu",
    "success": true,
    "message": "Job verification will be attempted shortly. Call /status endpoint to know the status of the Job"
}

Response parameters

ParameterTypeDefinition
job_id[string]The job_id corresponding to the list you need to start verification
success[true, false]Whether the API request call was successful or not.
message[string]Describes the start result

🚧

The verification once started cannot be paused, stopped, cancelled or restart the same list.

Other Responses

The response you get when the API key is invalid:

HTTP/1.1 401 Unauthorized
{   
   "result":"Invalid API Key",
   "success": false
}

The response you get when you provide invalid job_id:

HTTP/1.1 400 BadRequest
{
    "result": "Job not found. Invalid jobId",
    "success": false
}

The response you get when you account is under review or restricted:

HTTP/1.1 400 BadRequest
{
    "result": "Verify restricted",
    "success": false
}

The response you get when the verification already started:

HTTP/1.1 400 BadRequest
{
    "result": "Verification has already started.",
    "success": false
}

The response you get when you have insufficient credit to begin verification:

HTTP/1.1 HTTP/1.1 402 Payment Required
{
    "result": "Insufficient verification credits. Please order a plan.",
    "success": false
}

The response you get when the job not found:

HTTP/1.1 400 BadRequest
{
    "result": "Job not found.",
    "success": false
}

The response you get when then job is preparing for verification:

HTTP/1.1 400 BadRequest
{
    "result": "Job is not ready for verification, please call the /status endpoint and start verification once the status of the job turns to ready.",
    "success": false
}
Language
Authorization
Query