Delete Evaluation
Evaluations
Delete Evaluation
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 delete
Returns:
Success response containing:
id: The deleted evaluation identifiermessage: Confirmation message
Raises:
404: If evaluation not found or doesn’t belong to the authenticated user
Example 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.
DELETE
Delete Evaluation