curl --request DELETE \
--url https://api.pandaprobe.com/evaluations/trace-runs/{run_id} \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Delete an eval run.
By default, only the run record is deleted (scores are preserved
with eval_run_id set to NULL via CASCADE). Pass
?delete_scores=true to also delete all scores from this run.
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
curl --request DELETE \
--url https://api.pandaprobe.com/evaluations/trace-runs/{run_id} \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Also delete all trace scores created by this run.
Successful Response