Sets the values selected for an input control of a report.
PUT <webiURL>/documents/{documentId}/reports/{reportId}/inputcontrols/{inputControlId}/selection
Where:
Request body: the values can be obtained by getting the list of values from the assigned data object. The following is the XML response of the GET call.
<lov hierarchical="false" partial="false" refreshable="false"> <values> <value>Germany</value> <value>Japan</value> <value>Madagascar</value> <value>Australia</value> <value>Nepal</value> <value>South Africa</value> <value>UK</value> </values> </lov>
Response type: application/xml or application/json
The response is a message stating the success or failure of the request.
PUT <webiURL>/documents/7246/reports/1/inputcontrols/R1.IF4/selection
Request body:
<selection> <value>Japan</value> <value>UK</value> <value>Australia</value> </selection>
Response:
<success> <message>The resource of type 'InputControlSelection' has been successfully updated.</message> </success>