Getting the List of Reports

Gets the list of reports for a Web Intelligence document.

Request

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

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

Response type: application/xml or application/json

Response body: the id, name, reference, and the showDataChanges setting.

Example

GET <webiURL>/documents/12782/reports

Response:

<reports>
	<report>
		<id>1</id>
		<name>Cross Tab View</name>
		<reference>1.RS</reference>
		<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>
	<report>
		<id>2</id>
		<name>Simple charting view</name>
		<reference>2.RS</reference>
		<element>
			<name>2004</name>
			<reference>2.K.0</reference>
		</element>>
			<name>2005</name>
			<reference>2.K.1</reference>
		</element>
		<element>>2006</name>
			<reference>2.K.2</reference>
		</element>
	</report>
</reports>