close.onMeetingCompleted starts an automation when a Close meeting completes.
automations/on-close-meeting-completed.automation.ts
account selects a named binding. Returns the Close event envelope with the completed CloseMeeting 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 meeting completes.
close.onMeetingCompleted starts an automation when a Close meeting completes.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close meeting completed", () => {
const event = close.onMeetingCompleted()
// Record the completed Close meeting outcome.
})
account selects a named binding. Returns the Close event envelope with the completed CloseMeeting in data.