list_dns_records
Retrieve and filter DNS records for a configured zone on Cloudflare. Supports filtering by record name or type, helping manage domain configurations efficiently.
Instructions
List all DNS records for the configured zone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | Filter by record name (optional) | |
type | No | Filter by record type (optional) |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Filter by record name (optional)",
"type": "string"
},
"type": {
"description": "Filter by record type (optional)",
"enum": [
"A",
"AAAA",
"CNAME",
"MX",
"TXT",
"NS",
"SRV",
"CAA",
"PTR"
],
"type": "string"
}
},
"type": "object"
}