I am using Restful web service to refresh the document which as filter values with InList and EqualTo prompts. When saving the refreshed report into any format say PDF using Restful api the report data is incorrect. I am using the below XML as a request body.
<parameters>
<parameter>
<id>0</id>
<answer>
<values>
<value>0</value>
<value>2</value>
<value>761</value>
<value>858</value>
<value>863</value>
<value>867</value>
<value>868</value>
<value>869</value>
<value>870</value>
<value>871</value>
<value>872</value>
<value>873</value>
<value>893</value>
</values>
</info>
</answer>
</parameter>
<parameter>
<id>1</id>
<answer>
<values>
<value>BURDN</value>
</values>
</answer>
</parameter>
</parameters>
If I provide single value in InList and EqualTo Prompt then the report produces the correct data. But this is not the case when passing multiple InList values and EqualTo prompts.
Can any body please suggest me the possible solutions.