close.listSmsMessages lists Close SMS activities with typed message and phone fields.
automations/list-close-sms.automation.ts
{ account } selects a named binding.
Returns a page of CloseSms records and hasMore.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List and filter Close SMS activities.
close.listSmsMessages lists Close SMS activities with typed message and phone fields.
import { automation, onDashboardRun } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("List Close SMS", () => {
onDashboardRun({ title: "List Close SMS" })
const messages = close.listSmsMessages({ leadIds: ["lead_abc123"] })
// Filter the Close SMS messages or continue pagination.
})
{ account } selects a named binding.
Returns a page of CloseSms records and hasMore.