Hi Vincent,
Thanks for your response.
I've already tried with the raw SOAP request as shown below and able to get the response.
<soapenv:Body>
<v20:getCompaniesByStatement>
<v20:filterStatement>
<v20:query>WHERE id = 'XXXXXXXX'</v20:query>
</v20:filterStatement>
</v20:getCompaniesByStatement>
</soapenv:Body>
But I need the query to be modified in the form of key value pair as shown below format of request body.
<soapenv:Body>
<v20:getCompaniesByStatement>
<v20:filterStatement>
<v20:query>?????</v20:query>
<v20:values>
<v20:key>?????</v20:key>
<v20:value>
<v20:Value.Type>?????</v20:Value.Type>
</v20:value>
</v20:values>
</v20:filterStatement>
</v20:getCompaniesByStatement>
</soapenv:Body>
Appreciate your help to fill the ???? with proper syntax in above request body. Please let me know if you need more details.
Thanks,
Kiran G