brevo.deleteEmailTemplate permanently delete a Brevo transactional email template.
Example
Inputs
templateId is the positive numeric template ID. The second argument can select { account }.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently delete a Brevo transactional email template.
brevo.deleteEmailTemplate permanently delete a Brevo transactional email template.
import { automation, onDashboardRun } from "automate.ax"
import { brevo } from "automate.ax/brevo"
export default automation("Delete email template", () => {
onDashboardRun({ title: "Delete email template" })
brevo.deleteEmailTemplate({ templateId: 42 })
})
templateId is the positive numeric template ID. The second argument can select { account }.