Creating a Drill Filter

Creates a drill filter for a report.

Returns an error if the drill is not activated on the report.

Request

POST <webiURL>/documents/{documentId}/reports/{reportId}/driller/filters

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: the identifier and value of the report drill filter.

Response

Response type: application/xml or application/json

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

Example

POST <webiURL>/documents/127/reports/1/driller/filters

Request body:

<filter>
    <id>DP1.DO22</id>
    <value>France</value>
</filter>

Response:

<success>
    <message>The resource of type 'DrillFilter' with identifier 'DP1.DO22' has been successfully created.</message>
    <id>DP1.DO22</id>
</success>