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

# Destroy Video

> Delete a specific video by ID.

This endpoint deletes a specific video by its ID.


## OpenAPI

````yaml DELETE /api/v1/videos/{id}
openapi: 3.0.1
info:
  title: OpenAPI Video Support API
  description: >-
    API for managing video request links and videos in the Video Support
    platform.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.videosupport.io
security:
  - accessToken: []
paths:
  /api/v1/videos/{id}:
    delete:
      summary: Destroy Video
      description: Delete a specific video by ID.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the video to delete.
      responses:
        '200':
          description: Video successfully deleted
        '404':
          description: Video not found
          content:
            application/json:
              example:
                error: VideoRequestLink not found
components:
  securitySchemes:
    accessToken:
      type: apiKey
      in: header
      name: Access-Token

````