resend.getDomain retrieves one domain by its Resend ID.
automations/get-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.
Retrieve a Resend domain and its DNS records.
resend.getDomain retrieves one domain by its Resend ID.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Get Resend domain", () => {
resend.getDomain({ domainId: "domain_123" })
})