closeBot.listBotTemplates returns the templates you can pass to createBot.
automations/list-closebot-bot-templates.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List templates available for new CloseBot bots.
closeBot.listBotTemplates returns the templates you can pass to createBot.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("List CloseBot bot templates", () => {
onDashboardRun({ title: "List bot templates" })
closeBot.listBotTemplates()
})