close.getCall retrieves a call by its activity ID.
automations/get-close-call.automation.ts
callId; optional second argument { account } selects a named Close binding. Returns the CloseCall activity.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one Close call activity.
close.getCall retrieves a call by its activity ID.
import { automation, onDashboardRun } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("Get Close call", () => {
onDashboardRun({ title: "Get Close call" })
const call = close.getCall({ callId: "acti_abc123" })
// Send the Close call recording to the reviewer.
})
callId; optional second argument { account } selects a named Close binding. Returns the CloseCall activity.