Hoover's API Forums

Ask a Question

RSS Feed

AdvancedSearch using Multiple IndustryNames

  1. 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!

  2. bhawley2 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>

  3. ProductionUser22 months ago

    Thank you. Appreciate it very much.