closeBot.createFolder creates a top-level or nested folder.
automations/create-closebot-folder.automation.ts
Inputs
Providename. Omit parentId for a top-level folder.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a CloseBot bot and persona folder.
closeBot.createFolder creates a top-level or nested folder.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("Create CloseBot folder", () => {
onDashboardRun({ title: "Create folder" })
closeBot.createFolder({ name: "Sales", parentId: "parent-folder-id" })
})
name. Omit parentId for a top-level folder.