get_simulation_diagram_contents
readSince v1.0Get the widgets on a simulation diagram (dashboard) with their IDs and current text — charts (name, axis labels, per-series display names) and slider/checkbox/option/text/parameter-set-chooser controls (label). These widgets live only on the diagram and have no model-tree presence, so this is the only way to discover their IDs. Use it to translate a dashboard: read the contents, then write translations with translate_elements using keys like '{chart_id}:name', '{chart_id}:series:{series_id}:display_name', and '{widget_id}:label'.
Example Request
{"diagram_id": "diagram-uuid"}Example Response
{"diagram": {"id": "diagram-uuid", "name": "KPI Dashboard"}, "chart_widgets": [{"id": "chart-uuid", "name": "Cost over time", "x_axis_label": "Year", "series": [{"id": "series-uuid", "display_name": "Factory A cost"}]}], "slider_controls": [{"id": "slider-uuid", "label": "Demand"}]}