Skip to main content
DELETE
/
automation
/
delete-upload
Delete Upload
curl --request DELETE \
  --url https://public.reap.video/api/v1/automation/delete-upload \
  --header 'Authorization: Bearer <token>'
{
  "uploadId": "<string>",
  "deleted": true
}

Overview

Permanently delete an uploaded file from storage. This action cannot be undone.

Rate Limiting

This endpoint is rate limited to 10 requests per minute per API key.
This permanently removes the file from storage. Any projects that reference this upload will not be affected, but the original source file will no longer be available.

Response

uploadId
string
ID of the deleted upload
deleted
boolean
Always true on success

Example Request

curl -X DELETE "https://public.reap.video/api/v1/automation/delete-upload?uploadId=65f1a2b3c4d5e6f7a8b9c0d1" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Example Response

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

uploadId
string
required

Unique identifier of the upload

Response

200 - application/json

Successful response

uploadId
string
deleted
boolean
default:true