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

Overview

Permanently delete a clip and its exported video file. This action cannot be undone.

Rate Limiting

This endpoint is rate limited to 10 requests per minute per API key.
This permanently deletes the clip and its exported video file. Cannot delete clips that are still processing.

Response

clipId
string
ID of the deleted clip
deleted
boolean
Always true on success

Example Request

curl -X DELETE "https://public.reap.video/api/v1/automation/delete-clip?projectId=65f1a2b3c4d5e6f7a8b9c0d2&clipId=65f1a2b3c4d5e6f7a8b9c0d4" \
  -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

projectId
string
required

Unique identifier of the project

clipId
string
required

Unique identifier of the clip

Response

200 - application/json

Successful response

clipId
string
deleted
boolean
default:true