Getting the Details of a Drill Filter

Gets the details of a drill filter for a report.

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

Request

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

Where:
  • {documentId} is the document identifier retrieved from the list of documents
  • {reportId} is the report identifier retrieved from the list of reports
  • {filterId} is the drill filter identifier retrieved from the list of the drill filters
Response

Response type: application/xml or application/json

Response body: the description of the drill filter.

Example

GET <webiURL>/documents/13343/reports/1/driller/filters/DP0.DO13

Response:

<filter qualification="Dimension" inQuery="false" ambiguous="false" inScope="true">
    <id>DP0.DO13</id>
    <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>