Refreshes a Web Intelligence document.
When a document does not need any parameters to be refreshed, you can omit the request body. When a document needs parameters, the server lists the required parameters in an iterative way if the user does not provide them. For documents which need parameters, if the user does not want to send any, a parameter must be sent but without the answer block.
PUT <webiURL>/documents/{documentId}/parameters?lovInfo={true|false}
Where:
Request body:
<parameters> <parameter optional="true|false" type="context|prompt"> <id>...</id> <answer constrained="true" type="Text|Numeric|DateTime"> <values> <value id="...">...</value> </values> </answer> </parameter> </parameters>
Request body (JSON):
{"parameters":{"parameter":{"id":0,"answer":{"values":{"value":{"@id":"2"}}}}}}
Where:
dateTime is of the format: yyyy-mm-ddThh:mm:ss.sss+HH:MM HH:MM is the time zone offset. Example: 1992-09-03T17:15:00.000+02:00.
Response type: application/xml or application/json
See the following sections to know the possible responses depending on the parameters to be refreshed.