closeBot.deleteLibraryFile permanently deletes one knowledge file.
automations/delete-closebot-library-file.automation.ts
Inputs
Provide thefileId. This operation cannot be undone.
Output
Returnsnull after deletion.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete a CloseBot agency library file.
closeBot.deleteLibraryFile permanently deletes one knowledge file.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("Delete CloseBot library file", () => {
onDashboardRun({ title: "Delete library file" })
closeBot.deleteLibraryFile({ fileId: "file-id" })
})
fileId. This operation cannot be undone.
null after deletion.