action files_get_site_dns_records { label: "Show site DNS configuration." description: "Show site DNS configuration." provider: files method: GET path: "/site/dns_records" encoding: json input: { type: "object" properties: { cursor: { type: "string" } per_page: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "Show site DNS configuration." properties: { domain: { type: "string" description: "DNS record domain name" } id: { type: "string" description: "Unique label for DNS record; used by Zapier and other integrations." } rrtype: { type: "string" description: "DNS record type" } value: { type: "string" description: "DNS record value" } } } } }