Update Report Configuration

API Type

Web Services

Description

Updates a report configuration in the AgilePoint system.

Syntax

public virtual WFReportConfigure UpdateReportConfigure(string reportName, string configure)

Parameters

Name Description

reportName

Definition:
The name of a report.
Type
string
Allowed Values:
A valid report name.

configure

Definition:
The report configuration in XML format.
Type
string
Allowed Values:
A valid report configuration in XML format.

Output

WFReportConfigure object.

Example

IWFAdminService svc = GetAdminService();
string reportName = ...//for example, "weekly task report"
string configure = ...// xml-serialization of WFReportConfiguration

try
	{
    WFReportConfigurereportConfig =
    svc.UpdateReportConfigure(reportName, configure);
	}

catch (Exception ex)
	{  
    Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex));
	}

Supported Versions

3.2.0.4 and higher