DELETE
/
datapoints
/
{id}
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
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Datapoint ID like 65c13dbbd65fb876b7886cdb

Response

200 - application/json
Datapoint successfully deleted
deleted
boolean