apollo.searchEmails searches one page of Apollo outreach emails.
automations/search-apollo-emails.automation.ts
{ emails, page, perPage, hasMore }; hasMore is true when Apollo fills the requested page.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Search Apollo sequence outreach emails.
apollo.searchEmails searches one page of Apollo outreach emails.
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"
export default automation("Find replied emails", () => {
onDashboardRun({ title: "Find replied emails" })
apollo.searchEmails({ statuses: ["opened"], page: 1, perPage: 50 })
})
{ emails, page, perPage, hasMore }; hasMore is true when Apollo fills the requested page.