action cloudflare_email_sending_subdomains_get_sending_subdomain_dns { label: "Get sending subdomain DNS records" description: "Returns the expected DNS records for a sending subdomain." provider: cloudflare method: GET path: "/zones/{zone_id}/email/sending/subdomains/{subdomain_id}/dns" encoding: json input: { type: "object" properties: { subdomain_id: { type: "string" description: "Sending subdomain identifier." } zone_id: { type: "string" description: "Identifier." } } required: ["subdomain_id", "zone_id"] additionalProperties: false } output: { type: "object" } }