Updating the Properties of a Report

Usage

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

Request

PUT /documents/<documentID>/reports/<reportID>

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 /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>