Edit a metric
Python
import honeyhive from honeyhive.models import components s = honeyhive.HoneyHive( bearer_auth="<YOUR_BEARER_TOKEN_HERE>", ) res = s.metrics.update_metric(request=components.MetricEdit( metric_id='<value>', )) if res is not None: # handle response pass
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Metric updated successfully
Was this page helpful?