Method
updateGraphDashboard POST
Copy POST

Updates a graph dashboard

Arguments:

REQUIRED KEY TYPE DESCRIPTION
Yes graphDashboardId str Unique string identifier for the graph dashboard to update.
No name str Name of the dashboard.
No pythonFunctionIds List[str] List of unique string identifiers for the Python functions to be used in the graph dashboard.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
result GraphDashboard
KEY TYPE Description
name str The user-friendly name for the graph dashboard.
graphDashboardId str The unique identifier of the graph dashboard.
createdAt str Date and time at which the graph dashboard was created, in ISO-8601 format.
projectId str The unique identifier of the project this graph dashboard belongs to.
pythonFunctionIds List[str] List of Python function IDs included in the dashboard.
plotReferenceIds List[str] List of the graph reference IDs for the plots to the dashboard.
pythonFunctionNames List[str] List of names of each of the plots to the dashboard.
projectName str The name the graph dashboard belongs to.
description str The description of the graph dashboard.

Exceptions:

TYPE WHEN
DataNotFoundError

graphDashboardId is not found.

DataNotFoundError

pythonFunctionIds is not found.

Language: