closeBot.listPersonas lists the personas available to bots in the connected agency.
automations/list-closebot-personas.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List AI personas in a CloseBot agency.
closeBot.listPersonas lists the personas available to bots in the connected agency.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("List CloseBot personas", () => {
onDashboardRun({ title: "List CloseBot personas" })
closeBot.listPersonas()
})