resend.verifyDomainClaim({ domainId }) asks Resend to check the TXT record for a domain ownership claim.
automations/verify-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.
Check a Resend domain claim’s TXT proof.
resend.verifyDomainClaim({ domainId }) asks Resend to check the TXT record for a domain ownership claim.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Verify Resend domain claim", () => {
resend.verifyDomainClaim({ domainId: "domain_123" })
})