Creating a Drill Filter

Usage

Creates a drill filter for a report.

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

Request

POST /documents/<documentID>/reports/<reportID>/driller/filters

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 /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>