resend.updateBroadcast update a draft Resend broadcast.
automations/resend-updateBroadcast.automation.ts
{ account } selects the Resend account binding.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a draft Resend broadcast.
resend.updateBroadcast update a draft Resend broadcast.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Update broadcast", () => {
resend.updateBroadcast({
broadcastId: "broadcast_123",
patch: { subject: "Updated news", markdown: "# Updated" },
})
})
{ account } selects the Resend account binding.