elevenLabs.getDubbing requires dubbingId. It returns the project name, source and target languages, processing status, and a provider error when present.
automations/get-dubbing.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the state of one ElevenLabs dubbing project.
elevenLabs.getDubbing requires dubbingId. It returns the project name, source and target languages, processing status, and a provider error when present.
import { automation, markSignificant, onInvocation } from "automate.ax"
import { elevenLabs } from "automate.ax/elevenlabs"
export default automation("Get dubbing", () => {
onInvocation()
markSignificant(elevenLabs.getDubbing({ dubbingId: "dubbing-id" }))
})