Skip to main content
DELETE
/
eval-runs
Delete Evaluation Runs
curl --request DELETE \
  --url https://api.example.com/eval-runs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eval_run_ids": [
    "<string>"
  ]
}
'
{
  "detail": "Bad request",
  "error_code": "BAD_REQUEST"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

db_id
string | null

Database ID to use for deletion

table
string | null

Table to use for deletion

Body

application/json
eval_run_ids
string[]
required

List of evaluation run IDs to delete

Minimum array length: 1

Response

Successful Response