resend.deleteDomain({ domainId }) permanently removes one Resend domain. The result returns the deleted domain ID and Resend’s deleted confirmation.
automations/delete-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.
Permanently remove a domain from Resend.
resend.deleteDomain({ domainId }) permanently removes one Resend domain. The result returns the deleted domain ID and Resend’s deleted confirmation.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Delete Resend domain", () => {
resend.deleteDomain({ domainId: "domain_123" })
})