> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Export conversations

> Start an Apollo conversation export.

`apollo.exportConversations` starts an asynchronous export for a UTC time range.

```ts automations/export-apollo-conversations.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"

export default automation("Export conversations", () => {
  onDashboardRun({ title: "Export conversations" })
  apollo.exportConversations({
    startTime: "2026-08-01T00:00:00Z",
    endTime: "2026-09-01T00:00:00Z",
    email: "owner@example.com",
  })
})
```

`startTime` must precede `endTime`; `email` must belong to a valid Apollo team member. Apollo charges 0–1 credit for each exported conversation, so broad ranges can consume many credits. Returns `{ exportId, statusUrl }`. Use `apollo.getConversationExport` to retrieve the completed download URL.
