> ## Documentation Index
> Fetch the complete documentation index at: https://docs.deepdub.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Cancel Dubbing Job

> Mark a job as cancelled. Cancellation is permanent — a cancelled job cannot be revived; submit a new job instead.



## OpenAPI

````yaml /managed-dub.openapi.json delete /dubbing/job/{request_id}
openapi: 3.1.0
info:
  title: Deepdub Managed Dubbing API
  description: >-
    Public REST API for submitting videos for AI-assisted dubbing, tracking job
    status, and managing deliverables.
  version: 1.0.0
servers:
  - url: https://dubbing.deepdub.app
security:
  - ApiKeyAuth: []
paths:
  /dubbing/job/{request_id}:
    delete:
      summary: Cancel Dubbing Job
      description: >-
        Mark a job as cancelled. Cancellation is permanent — a cancelled job
        cannot be revived; submit a new job instead.
      operationId: cancel_request_handler_dubbing_job__request_id__delete
      parameters:
        - required: true
          schema:
            type: string
            title: Request Id
          name: request_id
          in: path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key issued by Deepdub. Contact your account manager to obtain one.

````