Getting the Details of a Report

Gets the details of the report specified by the given identifier.

Request

GET <webiURL>/{documentId}/reports/{reportId}

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 <id>, <name>, and <reference> of the reports
  • The <name> and <reference> of the report elements
  • The <showDataChanges> Boolean value that expresses whether data changes are displayed

Example

GET <webiURL>/documents/7858/reports/3

Response:

<report>
    <id>1</id>
    <name>Cross Tab View</name>
    <reference>1.RS</reference>
    <showDataChanges>false</showDataChanges>
    <element>
        <name>2004</name>
        <reference>1.K.0</reference>
    </element>
    <element>
        <name>2005</name>
        <reference>1.K.1</reference>
    </element>
    <element>
        <name>2006</name>
        <reference>1.K.2</reference>
    </element>
</report>