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