elevenLabs.deleteDubbing requires dubbingId. It permanently removes the provider project and returns { dubbingId, deleted }.
automations/delete-dubbing.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Permanently deletes an ElevenLabs dubbing project.
elevenLabs.deleteDubbing requires dubbingId. It permanently removes the provider project and returns { dubbingId, deleted }.
import { automation, markSignificant, onInvocation } from "automate.ax"
import { elevenLabs } from "automate.ax/elevenlabs"
export default automation("Delete dubbing", () => {
onInvocation()
markSignificant(elevenLabs.deleteDubbing({ dubbingId: "dubbing-id" }))
})