resend.updateDomain updates one domain.
automations/update-resend-domain.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a Resend domain’s capabilities and tracking settings.
resend.updateDomain updates one domain.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Update Resend domain", () => {
resend.updateDomain({
domainId: "domain_123",
patch: { openTracking: true, tls: "enforced" },
})
})