closeBot.deletePersona permanently deletes a persona.
automations/delete-closebot-persona.automation.ts
Inputs
ProvidepersonaId.
Output
Returnsnull after deletion. CloseBot rejects deletion when the persona cannot be removed.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete a CloseBot AI persona.
closeBot.deletePersona permanently deletes a persona.
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"
export default automation("Delete CloseBot persona", () => {
onDashboardRun({ title: "Delete CloseBot persona" })
closeBot.deletePersona({ personaId: "persona-id" })
})
personaId.
null after deletion. CloseBot rejects deletion when the persona cannot be removed.