close.onSmsReceived starts an automation when Close creates an inbound SMS activity.
automations/on-close-sms-received.automation.ts
account selects a named binding. Returns the Close event envelope with the inbound 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 receives an SMS message.
close.onSmsReceived starts an automation when Close creates an inbound SMS activity.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close SMS received", () => {
const event = close.onSmsReceived()
// Send the received Close SMS message to the assigned representative.
})
account selects a named binding. Returns the Close event envelope with the inbound CloseSms in data.