Remove Breach Alert Subscriptions for Users
Allows you to delete Exposure alert subscriptions for one or more email addresses.
Authorizations
Body
usernameHashesstring[]RequiredExample:
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
customDatastringOptional
(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.
Responses
200
The call was successful. You will no longer receive alerts for the provided email addresses.
application/json
delete
DELETE /v1/breach-monitoring-for-users HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer Base64(your_api_key:your_api_secret)
Content-Type: application/json
Accept: */*
Content-Length: 107
{
"usernameHashes": [
"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
],
"customData": "text"
}
200
The call was successful. You will no longer receive alerts for the provided email addresses.
{
"deleted": 1,
"notFound": 0
}
Last updated
Was this helpful?