delete_dns_record
Remove DNS records from Cloudflare zones to manage domain configurations, update routing, or clean up obsolete entries using zone and record identifiers.
Instructions
Delete a DNS record from a zone
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| zone_id | Yes | The zone ID | |
| record_id | Yes | The DNS record ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"record_id": {
"description": "The DNS record ID to delete",
"type": "string"
},
"zone_id": {
"description": "The zone ID",
"type": "string"
}
},
"required": [
"zone_id",
"record_id"
],
"type": "object"
}