Skip to main content
DELETE
/
monitors
/
bulk
Delete multiple monitors
curl --request DELETE \
  --url https://api.dnsradar.dev/monitors/bulk \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "ids": [
    "mon_123abc",
    "mon_456def"
  ]
}
'
{
  "code": 400,
  "errors": {
    "email": "Invalid email format"
  }
}

Authorizations

X-Api-Key
string
header
required

API key used to authenticate yourself on DNSRadar. Obtain your API key from your DNSRadar dashboard.

Body

application/json
ids
string[]
required

Array of monitor IDs to delete

Minimum array length: 1

Monitor ID (must start with 'mon_')

Pattern: ^mon_
Example:
["mon_123abc", "mon_456def"]

Response

Monitors deleted successfully