Getting the Free Drill Elements

Obtains the free drill elements.

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

Request

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

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

Response type: application/xml or application/json

Response body: the description of the available drill elements for the report. Fro each drill element:

  • qualification
  • id
  • name

Example

GET <webiURL>/documents/4567/reports/1/driller/drillelements

Response:

<drillelements>
    <drillelement qualification="Dimension" inQuery="false" ambiguous="false" inScope="true">
        <id>DP0.DO39</id>
        <name>Country</name>
    </drillelement>
    <drillelement qualification="Dimension" inQuery="false" ambiguous="false" inScope="true">
        <id>DP0.DO2</id>
        <name>Resort</name>
    </drillelement>
    <drillelement qualification="Dimension" inQuery="false" ambiguous="false" inScope="true">
        <id>DP0.DO4</id>
        <name>Service Line</name>
    </drillelement>
    <drillelement qualification="Dimension" inQuery="false" ambiguous="false" inScope="true">
        <id>DP0.DO5</id>
        <name>Service</name>
    </drillelement>
</drillelements>