Moving a Report

Moves a report within a Web Intelligence document.

Request

PUT <webiURL>/documents/{documentId}/reports?fromId={fromId}&toId={toId}

Where:
  • {documentId} is the document identifier retrieved from the list of documents
  • {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<webiURL>/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>