Skip to main content
DELETE
/
v1
/
run
/
{run_id}
/
evaluation
/
{evaluation_id}
Delete run evaluation
curl --request DELETE \
  --url https://api.example.com/v1/run/{run_id}/evaluation/{evaluation_id} \
  --header 'Authorization: Bearer <token>'
{
  "error": "<string>"
}
Delete an evaluation from a run. This operation cannot be undone.

Authorizations

Authorization
string
header
required

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

Path Parameters

run_id
string<uuid>
required

The ID of the run

evaluation_id
string<uuid>
required

The ID of the evaluation

Response

Evaluation deleted successfully