close.onSmsSent starts an automation after Close sends an SMS message.
automations/on-close-sms-sent.automation.ts
account selects a named binding. Returns the Close event envelope with the sent CloseSms 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 sends an SMS message.
close.onSmsSent starts an automation after Close sends an SMS message.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close SMS sent", () => {
const event = close.onSmsSent()
// Track the sent Close SMS message.
})
account selects a named binding. Returns the Close event envelope with the sent CloseSms in data.