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

Overview

Soft-delete a project. Deleted projects will no longer appear in the Get All Projects response.

Rate Limiting

This endpoint is rate limited to 10 requests per minute per API key.
Cannot delete projects that are still processing. Wait for the project to reach completed or failed status before deleting.

Response

projectId
string
ID of the deleted project
deleted
boolean
Always true on success

Example Request

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

Response

200 - application/json

Successful response

projectId
string
deleted
boolean
default:true