apollo.searchConversations searches recorded dialer calls and video meetings.
automations/search-apollo-conversations.automation.ts
{ conversations, pagination }.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Search recorded Apollo conversations.
apollo.searchConversations searches recorded dialer calls and video meetings.
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"
export default automation("Find recent meetings", () => {
onDashboardRun({ title: "Find recent meetings" })
apollo.searchConversations({
account: "acme.com",
type: "videoConference",
dateFrom: "2026-08-01T00:00:00Z",
})
})
{ conversations, pagination }.