POST
/
email_verify
/
list
/
cancel
curl --request POST \
  --url https://api.clearout.io/v2/email_verify/list/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "list_id": "Enter your list id here"
}'
{
  "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 verify cancel
list_id
string
required
Example:

"Enter your list id here"

Response

200
application/json
OK
status
string
Example:

"success"

data
object