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

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.

Response

200
application/json

Successfully deleted the evaluation.

The response is of type object.