Skip to content
Primary navigation

Delete video

$ openai videos delete
DELETE/videos/{video_id}

Permanently delete a completed or failed video and its stored assets.

ParametersExpand Collapse
--video-id: string

The identifier of the video to delete.

ReturnsExpand Collapse
VideoDeleteResponse: object { id, deleted, object }

Confirmation payload returned after deleting a video.

id: string

Identifier of the deleted video.

deleted: boolean

Indicates that the video resource was deleted.

object: "video.deleted"

The object type that signals the deletion response.

Delete video

openai videos delete \
  --api-key 'My API Key' \
  --video-id video_123
{
  "id": "id",
  "deleted": true,
  "object": "video.deleted"
}
Returns Examples
{
  "id": "id",
  "deleted": true,
  "object": "video.deleted"
}