close.onCallAnswered starts an automation when Close reports an answered call.
automations/on-close-call-answered.automation.ts
account selects a named Close binding. Returns the shared 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 is answered.
close.onCallAnswered starts an automation when Close reports an answered call.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close call answered", () => {
const event = close.onCallAnswered()
// Start the answered Close call follow-up.
})
account selects a named Close binding. Returns the shared Close event envelope with a CloseCall in data.