Moving a Report

Usage

Moves a report within a Web Intelligence document.

Request

PUT /documents/<documentID>/reports?fromId=<fromID>&toId=<toID>

Where:
  • <fromID> is a valid report identifier (before the move)
  • <toID> is a valid report identifier (after the move)
Response

Response type: application/xml or application/json

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

Example

PUT /documents/12782/reports?fromId=1&toId=3

Response:

<success>
    <message>The resource of type "Report" with identifier "1" has been successfully moved.</message>
    <id>1</id>
</success>