import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.tools.update_tool(request=components.UpdateToolRequest(
id='<id>',
name='<value>',
parameters={
'key': '<value>',
},
))
if res is not None:
# handle response
pass
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successfully updated the tool
Was this page helpful?
import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.tools.update_tool(request=components.UpdateToolRequest(
id='<id>',
name='<value>',
parameters={
'key': '<value>',
},
))
if res is not None:
# handle response
pass