Events
Datapoints
Datasets
Projects
Experiments
Projects
Update an existing project
Projects
Update an existing project
PUT
/
projects
import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.projects.update_project(request=components.UpdateProjectRequest(
project_id='<value>',
))
if res is not None:
# handle response
pass
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
Successfully updated the project
Was this page helpful?
import honeyhive
from honeyhive.models import components
s = honeyhive.HoneyHive(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
)
res = s.projects.update_project(request=components.UpdateProjectRequest(
project_id='<value>',
))
if res is not None:
# handle response
pass