The following example updates the configuration of a report.



Code Sample

# Updates the report with the specified unique identifier, changing the display name of the report.

$report = $reporting.GET_Report("5d1ae1a7-6625-4c2c-baf9-b08f6b6f87f1");

$report.DisplayName = "Updated Name";

$reporting.SET_Report($report);