Getting the Details of a Drill Filter

Usage

Gets the details of a drill filter for a report.

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

Request

GET /documents/<documentID>/reports/<reportID>/driller/filters<filterID>

Response

Response type: application/xml or application/json

Response body: the description of the drill filter.

Example

GET /documents/13343/reports/1/driller/filters/DP0.DO13

Response:

<filter qualification="Dimension" inQuery="false" ambiguous="false" inScope="true">
    <id>DP0.DO13</id>
    <name>City</name>
    <lov hierarchical="false" partial="false" refreshable="false"> 
        <values>
            <value>Albertville</value>
            <value>Augsburg</value>
            <value>Belfast</value> 
            . . .
            <value>Washington D.C.</value>
            <value>Yokohama</value>
        </values>
        <columns mappingId="0">
            <column id="0" type="String"></column>
        </columns>
    </lov>
</filter>