Updating the Drill Mode

Updates the drill mode of a report.

Request

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

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:

<driller>
    <output>false</output>
</driller>
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/3422/reports/2/driller

Request body:

<driller> 
    <output>false</output>
</driller>

Response:

<success>
    <message>The resource of type 'Driller' has been successfully updated.</message>
    <id>1</id>
</success>