Remove Breach Alert Subscriptions for Domains
Allows you to delete Exposure alert subscriptions for one or more email domains.
The Enzoic API uses a basic auth scheme where the username is your API key and the password is your API secret.
See https://docs.enzoic.com/enzoic-api-developer-documentation/using-the-enzoic-api#api-authentication for more details.
An array containing the domains you wish to remove Exposure alerts for.
sample.tst(Optional) Can be used in lieu of the domains parameter if you wish to delete all monitored domains with a specific customData value. This parameter is ignored if you also include the domains parameter - use one or the other, but not both.
The call was successful. You will no longer receive alerts for the provided domains.
DELETE /v1/breach-monitoring-for-domains HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 46
{
"domains": [
"sample.tst"
],
"customData": "text"
}The call was successful. You will no longer receive alerts for the provided domains.
{
"deleted": 1,
"notFound": 0
}Last updated
Was this helpful?