action cloudflare_email_sending_subdomains_get_sending_subdomain_dns_status { label: "Get sending subdomain DNS status" description: "Returns the desired DNS records for a sending subdomain along with a live diff against actual DNS state. Use this to detect missing, unlocked, foreign, or multi-record conflicts before deciding whether to call the fix endpoint." provider: cloudflare method: GET path: "/zones/{zone_id}/email/sending/subdomains/{subdomain_id}/dns/status" 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" } }