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