Moving a Data Provider in a Document

Usage

Moves an existing data provider in a Web Intelligence document from a position to another.

Request

PUT /documents/<documentID>/dataproviders?fromId=<FromDataProviderID>&toId=<ToDataProviderID>

Where:

  • <FromDataProviderID> is the identifier of the data provider to move
  • <ToDataProviderID> is the identifier of the data provider after 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/8022/dataproviders?fromId=DP0&toId=DP2

<success>
    <message>Resources of type "Data provider" with identifier "DP0" has been successfully moved.</message>
    <id>DP2</id>
</success>