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"
}
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"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The ID of the evaluation to delete.
Successfully deleted the evaluation.
The response is of type object
.
Was this page helpful?