action cloudflare_email_sending_subdomains_get_sending_subdomain { label: "Get a sending subdomain" description: "Gets information for a specific sending subdomain." provider: cloudflare method: GET path: "/zones/{zone_id}/email/sending/subdomains/{subdomain_id}" 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" } }