resend.getDomainClaim({ domainId }) retrieves the current ownership claim for a domain.
automations/get-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.
Retrieve a Resend domain ownership claim.
resend.getDomainClaim({ domainId }) retrieves the current ownership claim for a domain.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Get Resend domain claim", () => {
resend.getDomainClaim({ domainId: "domain_123" })
})