close.deleteSms permanently deletes an SMS activity.
automations/delete-close-sms.automation.ts
smsId; optional second argument { account } selects a named Close binding. Returns { deleted: true, smsId } after Close accepts the deletion.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete a Close SMS activity.
close.deleteSms permanently deletes an SMS activity.
import { automation, onDashboardRun } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("Delete Close SMS", () => {
onDashboardRun({ title: "Delete Close SMS" })
close.deleteSms({ smsId: "acti_abc123" })
})
smsId; optional second argument { account } selects a named Close binding. Returns { deleted: true, smsId } after Close accepts the deletion.