closeBot.updateFolder renames one folder.
automations/update-closebot-folder.automation.ts
Inputs
ProvidefolderId and the new name.
Output
Returnsnull after CloseBot accepts the rename.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Rename a CloseBot bot and persona folder.
closeBot.updateFolder renames one folder.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("Rename CloseBot folder", () => {
onDashboardRun({ title: "Rename folder" })
closeBot.updateFolder({ folderId: "folder-id", name: "Revenue" })
})
folderId and the new name.
null after CloseBot accepts the rename.