Skip to main content
DELETE
/
api
/
projects
/
{projectId}
/
videos
/
{videoId}
curl -X DELETE \
  https://studio.dubformer.ai/api/projects/PROJECT_ID/videos/VIDEO_ID \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "deleted": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.dubformer.ai/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint allows you to delete a video from a project. The video will be marked as deleted and become unavailable.

Path Parameters

projectId
string
required
The unique identifier of the project.
videoId
string
required
The unique identifier of the video to delete.

Response

deleted
boolean
required
Will be true if the video was deleted successfully.
curl -X DELETE \
  https://studio.dubformer.ai/api/projects/PROJECT_ID/videos/VIDEO_ID \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "deleted": true
}
{
  "error": "Not Found"
}

Notes

  • The video must exist and belong to a project that you have access to
  • The video will be marked as deleted and become unavailable
  • This operation is irreversible