resend.createDomainClaim starts an ownership claim and returns the TXT proof record.
automations/create-resend-domain-claim.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Claim a domain verified by another Resend account.
resend.createDomainClaim starts an ownership claim and returns the TXT proof record.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Claim Resend domain", () => {
resend.createDomainClaim({ name: "example.com", region: "us-east-1" })
})