close.onCommentCreated starts an automation for new Close comments.
automations/on-close-comment-created.automation.ts
account selects a named binding. Returns the Close event envelope with a CloseComment 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 creates a comment.
close.onCommentCreated starts an automation for new Close comments.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close comment created", () => {
const event = close.onCommentCreated()
// Notify the lead owner about the new Close comment.
})
account selects a named binding. Returns the Close event envelope with a CloseComment in data.