close.listEmails lists Close email activities with typed message fields.
automations/list-close-emails.automation.ts
{ account } selects a named binding.
Returns a page of CloseEmail 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 email activities.
close.listEmails lists Close email activities with typed message fields.
import { automation, onDashboardRun } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("List Close emails", () => {
onDashboardRun({ title: "List Close emails" })
const emails = close.listEmails({ contactIds: ["cont_abc123"] })
// Filter the Close emails or continue pagination.
})
{ account } selects a named binding.
Returns a page of CloseEmail records and hasMore.