Getting the List of Custom Properties

Lists all available custom properties of the specified report element.

Request

GET <webiURL>/documents/{documentId}/reports/{reportId}/elements/{elementId}/properties

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

Response type: application/xml or application/json

Response body: the list of keys and values of custom properties.

Example

GET <webiURL>/documents/1234/reports/1/elements/100/properties

Response:

<properties>
    <property key="KEY01">Value01</property>
    <property key="KEY#2">2nd properties</property>
</properties>