Skip to content

Delete Run Results

DELETE
/results/{run_id}
curl --request DELETE \
--url https://example.com/results/example \
--header 'Authorization: Bearer <token>'

Delete all data for a translation run (evaluation_results + translation_runs rows).

Intended for production callers that persist translations elsewhere and want to clean up the staging data after retrieval. Safe to call multiple times (idempotent).

run_id
required
Run Id
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}