close.onCallCompleted starts an automation when a Close call completes.
automations/on-close-call-completed.automation.ts
account selects a named Close binding. Returns the Close event envelope with a CloseCall in data.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run when a Close call completes.
close.onCallCompleted starts an automation when a Close call completes.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close call completed", () => {
const event = close.onCallCompleted()
// Record the completed Close call outcome.
})
account selects a named Close binding. Returns the Close event envelope with a CloseCall in data.