Skip to main content
DELETE
/
blacklists
Delete blacklist items
curl --request DELETE \
  --url https://api.reply.io/v3/blacklists \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
[
  {
    "domains": [
      "spam-domain.com",
      "malicious-site.net"
    ],
    "emails": [
      "[email protected]",
      "[email protected]"
    ]
  }
]
'
{
  "message": "Items deleted successfully"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header

Body

application/json
domains
string[]
required

List of blocked domain names

Example:
["spam-domain.com", "malicious-site.net"]
emails
string[]
required

List of blocked email addresses

Response

200 - application/json

Blacklist items deleted successfully

message
string
Example:

"Items deleted successfully"