Remove an Identity from Monitoring

Delete monitored identities

delete

Allows you to delete alert subscriptions for one or more individual identities.

Authorizations
Body

Either an array of tags or an array of Enzoic ids can be provided to indicate which identities to stop monitoring

tagsstring[]Optional

An array of tags for the identities to stop monitoring

Example: 56d6d566-82e6-426c-ae47-528a0fb64808
idsstring[]Optional

An array of Enzoic IDs for the identities to stop monitoring. These are the id field values which are returned as part of the response object when the /monitored-identities GET endpoint is called.

Example: 641c73ef1d909615a63b4d75
Responses
200
The call was successful. The provided identities will no longer be monitored.
application/json
delete
DELETE /v1/identity-monitoring HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer Base64(your_api_key:your_api_secret)
Content-Type: application/json
Accept: */*
Content-Length: 84

{
  "tags": [
    "56d6d566-82e6-426c-ae47-528a0fb64808"
  ],
  "ids": [
    "641c73ef1d909615a63b4d75"
  ]
}
200

The call was successful. The provided identities will no longer be monitored.

{
  "deleted": 1,
  "notFound": 0
}

Last updated

Was this helpful?