resend.removeSuppressionsBatch removes between 1 and 100 suppression records by IDs or email addresses.
automations/remove-resend-suppressions.automation.ts
ids or emails. The result identifies each suppression Resend reports as deleted.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove up to 100 Resend suppression records.
resend.removeSuppressionsBatch removes between 1 and 100 suppression records by IDs or email addresses.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Unsuppress Resend recipients", () => {
resend.removeSuppressionsBatch({
emails: ["one@example.com", "two@example.com"],
})
})
ids or emails. The result identifies each suppression Resend reports as deleted.