What should the soap Request look like if I want to pass multiple industry codes (obtained by the Advanced Search Lookup) to the Advanced Search Request.
For a single industryName the relevant part of the soapRequest might look like this:
.
.
.
</web:financialdata>
<web:industry>
<web:hooversIndustryName>1001</web:hooversIndustryName>
<web:primaryOnly></web:primaryOnly>
<web:nAICS></web:nAICS>
<web:sIAC></web:sIAC>
</web:industry>
<web:location>
.
.
.
My question is, what should it look like if I want to pass in multiple industry Names ??
There is no documentation on the above issue. Thanks!
What should the soap Request look like if I want to pass multiple industry codes (obtained by the Advanced Search Lookup) to the Advanced Search Request.
For a single industryName the relevant part of the soapRequest might look like this:
.
.
.
</web:financialdata>
<web:industry>
<web:hooversIndustryName>1001</web:hooversIndustryName>
<web:primaryOnly></web:primaryOnly>
<web:nAICS></web:nAICS>
<web:sIAC></web:sIAC>
</web:industry>
<web:location>
.
.
.
My question is, what should it look like if I want to pass in multiple industry Names ??
There is no documentation on the above issue. Thanks!
Tags
bhawley – 2 months ago
You would a new line for the next code, example:
<web:bal>
<web:industry>
<web:hooversIndustryName>1206</web:hooversIndustryName>
<web:hooversIndustryName>1105</web:hooversIndustryName>
<web:primaryOnly></web:primaryOnly>
</web:industry>
</web:bal>
ProductionUser2 – 2 months ago
Thank you. Appreciate it very much.