Python
import honeyhive s = honeyhive.HoneyHive( bearer_auth="<YOUR_BEARER_TOKEN_HERE>", ) res = s.datapoints.delete_datapoint(id='<value>') if res.object is not None: # handle response pass
{ "deleted": true }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Datapoint ID like 65c13dbbd65fb876b7886cdb
65c13dbbd65fb876b7886cdb
Datapoint successfully deleted
The response is of type object.
object
Was this page helpful?