Delete an evaluation permanently. This endpoint permanently removes an evaluation and all its associated data. Only the owner of the evaluation can delete it.
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Returns a confirmation message with the ID of the deleted evaluation. This endpoint permanently deletes the specified evaluation from the system, including its metadata and any associated records. The response confirms the successful deletion by returning the evaluation ID and a success message.