Delete a benchmark permanently.
This endpoint permanently removes a benchmark and all its associated data. Only the owner of the benchmark can delete it.
Path Parameters:
benchmark_id: Unique identifier of the benchmark to deleteReturns:
Success response containing:
id: The deleted benchmark identifiermessage: Confirmation messageRaises:
404: If benchmark not found or doesn’t belong to the authenticated userExample Request:
DELETE /api/v3/benchmark/task-abc123
Headers: {"Authorization": "Bearer <api_key>"}
Example Response:
{
"id": "task-abc123",
"message": "Benchmark successfully deleted"
}
Warning:
This action is permanent and cannot be undone. All benchmark questions and answers will be permanently deleted.