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"
}
}Delete up to multiple monitors in a single request by providing an array of monitor IDs.
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"
}
}API key used to authenticate yourself on DNSRadar. Obtain your API key from your DNSRadar dashboard.
Array of monitor IDs to delete
1Monitor ID (must start with 'mon_')
^mon_["mon_123abc", "mon_456def"]
Monitors deleted successfully