close.deleteCall permanently deletes a call activity.
automations/delete-close-call.automation.ts
callId; optional second argument { account } selects a named Close binding. Returns { deleted: true, callId } 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 call activity.
close.deleteCall permanently deletes a call activity.
import { automation, onDashboardRun } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("Delete Close call", () => {
onDashboardRun({ title: "Delete Close call" })
close.deleteCall({ callId: "acti_abc123" })
})
callId; optional second argument { account } selects a named Close binding. Returns { deleted: true, callId } after Close accepts the deletion.