CleanvoiceDocs

Delete Files

Manually delete an edit and its associated files before the automatic 7-day expiry.

All files (source and processed) are automatically deleted 7 days after processing. You can delete them sooner by deleting the edit job.

Deletion is permanent and cannot be undone.

Endpoint

DELETE /v2/edits/{edit_id}

No request body required.

Examples

curl -X DELETE https://api.cleanvoice.ai/v2/edits/edit_abc123 \
  -H "X-API-Key: $CLEANVOICE_API_KEY"
import requests

requests.delete(
    "https://api.cleanvoice.ai/v2/edits/edit_abc123",
    headers={"X-API-Key": api_key},
)
await axios.delete('https://api.cleanvoice.ai/v2/edits/edit_abc123', {
  headers: { 'X-API-Key': apiKey },
});

Response

Returns 200 OK on success.