DELETE
/
configurations
/
{id}
import honeyhive

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


res = s.configurations.delete_configuration(id='<value>')

if res is not None:
    # handle response
    pass

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Configuration ID like 6638187d505c6812e4043f24

Response

200

Configuration deleted successfully