Getting the Selections of an Input Control

Gets the values selected for an input control of a report.

Request

GET <webiURL>/documents/{documentId}/reports/{reportId}/inputcontrols/{inputControlId}/selection

Where:

  • {documentId} is the document identifier retrieved from the list of documents
  • {reportId} is the report identifier retrieved from the list of reports
  • {inputControlId} is the input control identifier retrieved from the list of input controls
Response

Response type: application/xml or application/json

The response is the list of values selected for the input control.

Example

GET <webiURL>/documents/7246/reports/1/inputcontrols/R1.IF4/selection

Response:

<selection>
    <value>Japan</value>
    <value>UK</value>
    <value>Australia</value>
</selection>