Skip to main content

Delete a bulk email list

DELETE https://api.bouncify.io/v1/bulk

List deletion cannot be undone

The list and its results once deleted cannot recovered back. If the lists and results are needed, you need to upload and verify the list again.

Request Parameters

ParameterTypeRequiredDescription
job_idstringRequiredYour list's jobId, you needs to delete
apikeystringRequiredAPI key

Successful Response

JSON

HTTP/1.1 200 OK
{
"job_id": "r374aki32rnatv868nntpxloc7dkilszc3eu",
"success": true,
"message": "List will be deleted"
}

Response Parameters

ParameterTypeDefinition
job_idstringYour list's jobId, you needs to delete
success[true, false]Whether the API request call was successful or not.
messagestringDescribes API result

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 the list is still processing:

HTTP/1.1 400 BadRequest
{
"result": "List is being processed, and cannot be deleted.",
"success": false
}

The response you get when the list not found:

HTTP/1.1 400 BadRequest
{
"result": "List not found, may be already deleted.",
"success": false
}

Example

Go / Python / PHP / Ruby / Shell

curl --request DELETE \
--url https://api.bouncify.io/v1/bulk \
--header 'accept: application/json'