apollo.updateAccount updates only the supplied fields on a saved account.
automations/update-apollo-account.automation.ts
Returns the updated
ApolloAccount. The action rejects an update with no changed fields.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update an Apollo account’s selected fields.
apollo.updateAccount updates only the supplied fields on a saved account.
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"
export default automation("Advance an Apollo account", () => {
onDashboardRun({ title: "Advance an Apollo account" })
apollo.updateAccount({ target: "acme.example", stage: "Customer" })
})
| Input | Type | Required | Description |
|---|---|---|---|
target | ApolloReference | Yes | Account ID, exact name/domain, or { id }. |
name, domain, phone, rawAddress | string | At least one change | Account fields to replace. |
stage, owner | ApolloReference | At least one change | New stage or owner. |
customFields | Record<string, string> | At least one change | Values keyed by field ID. |
Second argument: { account } | string | IntegrationAccountReference<"apollo"> | No | Connected workspace. Defaults to project binding. |
ApolloAccount. The action rejects an update with no changed fields.