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 details of the report, that is, the id, name, reference, and showDataChanges.

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>