Adds a new input control to a report.
POST /documents/<documentID>/reports/<reportID>/inputcontrols
The request body must adhere to the following rules:
Response type: application/xml or application/json
The response is a message stating the success or failure of the request.
POST /documents/7216/reports/3/inputcontrols
Request body:
<inputcontrol> <name>Slider on Revenue</name> <slider minValue="30000" maxValue="600000" increment="1000" cardinality="Single" operator="Greater"/> <assignedDataObject refId="DP0.DO7"/> <assignedReportElements> <assignedReportElement refId="2"/> </assignedReportElements> </inputcontrol>
Response:
<success> <message>The resource of type "InputControl" with identifier "R3.IF6" has been successfully created.</message> <id>R3.IF6</id> </success>