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