closeBot.listSourceVariables returns a bot’s variable values for one source.
automations/list-closebot-source-variables.automation.ts
Inputs
ProvidebotId and sourceId.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List one CloseBot bot’s variables for a source.
closeBot.listSourceVariables returns a bot’s variable values for one source.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("List CloseBot source variables", () => {
onDashboardRun({ title: "List source variables" })
closeBot.listSourceVariables({ botId: "bot-id", sourceId: "source-id" })
})
botId and sourceId.