Updating the Properties of a Report

Updates the properties of a report in the given Web Intelligence document.

Request

PUT <webiURL>/documents/{documentId}/reports/{reportId}

Where:
  • {documentId} is the document identifier retrieved from the list of documents
  • {reportId} is the report identifier retrieved from the list of reports

Request body:

<report>
    <name>
    <showDataChanges>

You can modify the report name and the <showDataChanges> value.

Response

Response type: application/xml or application/json

The response is a message stating the success or failure of the request.

Example

PUT <webiURL>/documents/9512/reports/67

Request body (XML file):

<report>
    <name>New report name</name>
    <showDataChanges>true</showDataChanges>
</report>

Response:

<success>
    <message>The resource of type 'Report' with identifier '67' has been successfully updated.</message>
    <id=“67“></id>
</success>