Remove Breach Alert Subscriptions for Users
Allows you to delete Exposure alert subscriptions for one or more email addresses.
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 of SHA256 hashes of the lowercased email addresses you wish to remove breach monitoring for. Maximum number of entries in a single post is 15,000.
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855(Optional) Can be used in lieu of the array of usernames if you wish to delete all monitored usernames with this customData value. This parameter is ignored if you also include the usernameHashes parameter - use one or the other, but not both.
The call was successful. You will no longer receive alerts for the provided email addresses.
DELETE /v1/breach-monitoring-for-users HTTP/1.1
Host: api.enzoic.com
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 107
{
"usernameHashes": [
"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
],
"customData": "text"
}The call was successful. You will no longer receive alerts for the provided email addresses.
{
"deleted": 1,
"notFound": 0
}Last updated
Was this helpful?