> ## 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.

# Update call

> Update a phone-call activity in Apollo.

`apollo.updateCall` changes selected fields on a logged phone call.

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

export default automation("Update a call", () => {
  onDashboardRun({ title: "Update a call" })
  apollo.updateCall({ callId: "6859...", note: "Proposal sent" })
})
```

`callId` is required. Set at least one call field; association fields accept the same semantic references as `apollo.createCall`. Returns the updated call.

This action requires an Apollo master API key. Apollo's OAuth app registration omits the required call scope.
