POST
/
email_finder
/
list
/
remove
curl --request POST \
  --url https://api.clearout.io/v2/email_finder/list/remove \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "list_id": "Enter your list id here",
  "ignore_result": true
}'
{
  "status": "success",
  "data": {
    "name": "email_verify.xlsx",
    "source": "upload",
    "created_on": "2022-05-16T10:41:30.427Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
List ID to bulk email finder removal
list_id
string
required
Example:

"Enter your list id here"

ignore_result
boolean
Example:

true

Response

200
application/json
OK
status
string
Example:

"success"

data
object