Delete an evaluation permanently. This endpoint permanently removes an evaluation and all its associated data.
Path Parameters:
evaluation_id: Unique identifier of the evaluation to deleteReturns:
Success response containing:
id: The deleted evaluation identifiermessage: Confirmation messageRaises:
404: If evaluation not found or doesn’t belong to the authenticated userExample Request:
DELETE /api/v3/evaluations/eval-xyz789
Headers: {"Authorization": "Bearer <api_key>"}
Example Response:
{
"id": "eval-xyz789",
"message": "Successfully deleted evaluation"
}
Warning:
This action is permanent and cannot be undone. All evaluation results, metrics, and associated data will be permanently deleted.