apollo.setAccountOwner assigns one workspace user to one or more accounts.
automations/set-apollo-account-owner.automation.ts
Returns one sparse mutation receipt per account with
id and optional owner, CRM owner, and stage IDs.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Assign an Apollo owner to saved accounts.
apollo.setAccountOwner assigns one workspace user to one or more accounts.
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"
export default automation("Assign Apollo accounts", () => {
onDashboardRun({ title: "Assign Apollo accounts" })
apollo.setAccountOwner({
accounts: [{ id: "account-one" }, "globex.example"],
owner: "ada@example.com",
})
})
| Input | Type | Required | Description |
|---|---|---|---|
accounts | ApolloReference[] | Yes | One or more account IDs, names/domains, or { id }. |
owner | ApolloReference | Yes | User ID, exact email/name, or { id }. |
Second argument: { account } | string | IntegrationAccountReference<"apollo"> | No | Connected workspace. Defaults to project binding. |
id and optional owner, CRM owner, and stage IDs.