Events
Datapoints
Datasets
Projects
Experiments
Delete an evaluation run
DELETE
/
runs
/
{run_id}
Copy
Ask AI
import honeyhive
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.delete_run(run_id='<value>')
if res.delete_run_response is not None:
# handle response
pass
Copy
Ask AI
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"deleted": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
import honeyhive
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.runs.delete_run(run_id='<value>')
if res.delete_run_response is not None:
# handle response
pass
Copy
Ask AI
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"deleted": true
}
Assistant
Responses are generated using AI and may contain mistakes.