PUT
/
runs
/
{run_id}
import honeyhive
from honeyhive.models import components

s = honeyhive.HoneyHive(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.runs.update_run(run_id='<value>', update_run_request=components.UpdateRunRequest())

if res.update_run_response is not None:
    # handle response
    pass
{
  "evaluation": {},
  "warning": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

run_id
string
required

Body

application/json

Response

200
application/json
Successful response

The response is of type object.