Getting the Structure of a Report

Note Prefer using the report element APIs to get Web Intelligence report content. See Managing Report Elements.
Usage

Gets the structure of a report.

Request

GET /documents/<documentID>/reports/<reportID>/specification

Response

Response type: text/xml

Response body: the description of the report structure.

Example

GET /documents/2334/reports/23/specification

Response:

<REPORT rId="12" name="Report1">
    <PAGE_HEADER bId="1"/>	
    <PAGE_BODY bId="2">
        <VTABLE y="100" x="100" bId="21"name="Table 1">	
     	  <ROWGROUP type="header">
                <TR>
                    <TDCELL bId="211"><CONTENT>=nameof([YEAR])</CONTENT></TDCELL>
                    <TDCELL bId="212"><CONTENT>=nameof([INCOME])</CONTENT></TDCELL>	
                </TR>
            </ROWGROUP>
            <ROWGROUP type="body">
                <TR>	
                    <TDCELL bId="213"><CONTENT>=[YEAR]</CONTENT></TDCELL>
                    <TDCELL bId="214"><CONTENT>=[INCOME]</CONTENT></TDCELL>
                </TR>	
            </ROWGROUP>
        </VTABLE>
    </PAGE_BODY>
    <PAGE_FOOTER bId="3"/>
</REPORT>