DELETE
/
evals
/
{eval_id}
/
runs
/
{run_id}
curl --request DELETE \
  --url https://api.openai.com/v1/evals/{eval_id}/runs/{run_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "eval.run.deleted",
  "deleted": true,
  "run_id": "evalrun_677469f564d48190807532a852da3afb"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

eval_id
string
required

The ID of the evaluation to delete the run from.

run_id
string
required

The ID of the run to delete.

Response

200
application/json

Successfully deleted the eval run

The response is of type object.