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

# Delete a video job



## OpenAPI

````yaml /api-reference/openapi.json delete /v1/videos/{video_id}
openapi: 3.1.0
info:
  title: SynapsAI Inference API
  version: 1.0.0
servers:
  - url: https://api.synapsai.cloud
    description: Production server
security: []
paths:
  /v1/videos/{video_id}:
    delete:
      summary: Delete a video job
      parameters:
        - name: video_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Video deletion response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoDeleteResponse'
components:
  schemas:
    VideoDeleteResponse:
      type: object
      description: Confirmation payload returned after deleting a video
      properties:
        id:
          type: string
        deleted:
          type: boolean
        object:
          type: string
          enum:
            - video.deleted
          default: video.deleted
      required:
        - id
        - deleted
        - object

````