Skip to main content
FuseFuse
IntegrationsCloudflareActions

Delete Cloudflare DNS record

Delete a DNS record in the bound zone. Requires DNS Write. Engine-safe: provider 404 maps to already_absent.

Agent markdown

dns_records.delete · Cloudflare · v1

Details

Risk
Destructive
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=false, destructive=true, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
record_idstringYesminLength 32; maxLength 32; pattern ^[0-9a-fA-F]{32}$

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 32; maxLength 32; pattern ^[0-9a-fA-F]{32}$

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "record_id": {
      "type": "string",
      "minLength": 32,
      "maxLength": 32,
      "pattern": "^[0-9a-fA-F]{32}$"
    }
  },
  "required": [
    "record_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 32,
      "maxLength": 32,
      "pattern": "^[0-9a-fA-F]{32}$"
    }
  },
  "required": [
    "id"
  ]
}