ExecuteQASearch service

You use this service to search for an address. Typically this returns a pick list that contains matching addresses and the percentage score assigned to the match.

To search for an address you need to supply:

You can specify whether the search is flattened, the intensity of the search (Exact, Close or Extensive), the prompt set to apply, and the timeout period

Optionally, you can also supply a layout to specify the format to use for the returned address.

The Identity Hub User Interface uses the SingleLine engine with a flattened search and the experian layout. The following XML shows how to specify this configuration:

<qas:Engine Flatten="true">Singleline</qas:Engine>
<qas:Layout>experian</qas:Layout>

This service returns a QASPicklistEntry group for each address that matches the entered search string. The QASPicklistEntry group includes:

SOAP messages

Request

<soapenv:Body>

<ns:ExecuteQASearch>

<eih:EIHHeader>

<eih:ClientUser>user</eih:ClientUser>

<eih:ReferenceId>123</eih:ReferenceId>

</eih:EIHHeader>

<qas:QASearch Language="">

<qas:Country>GBR</qas:Country>

<qas:Engine Flatten="true">Singleline</qas:Engine>

<!--Optional:-->

<qas:Layout>experian</qas:Layout>

<qas:Search>LL55 4YF</qas:Search>

</qas:QASearch>

</ns:ExecuteQASearch>

</soapenv:Body>

Response

<SOAP-ENV:Body>

<eih:QASearchResult>

<header:EIHHeader>

<header:ClientUser>user</header:ClientUser>

<header:ReferenceId>123</header:ReferenceId>

</header:EIHHeader>

<qas:QAPicklist>

<qas:PicklistEntry>

<qas:Moniker>0wOGBREgPbBwAAAAABAwEAAAAAgKtvAAAAAAAAZAAAAAD.....AAAAAAAAAAAA</qas:Moniker>

<qas:PartialAddress>Aber Cottage, Beddgelert, CAERNARFON, Gwynedd LL55 4YF</qas:PartialAddress>

<qas:Picklist>Aber Cottage, Beddgelert, CAERNARFON, Gwynedd</qas:Picklist>

<qas:Postcode>LL55 4YF</qas:Postcode>

<qas:Score>100</qas:Score>

</qas:PicklistEntry>

<qas:PicklistEntry>

<qas:Moniker>0DOGBREgPbBwAAAAABAwEAAAAAgKtxAAAAAAAAZAAAAAD.....AAAAAAAAAAAA</qas:Moniker>

<qas:PartialAddress>Aberglaslyn Hall, Beddgelert, CAERNARFON, Gwynedd LL55 4YF</qas:PartialAddress>

<qas:Picklist>Aberglaslyn Hall, Beddgelert, CAERNARFON, Gwynedd</qas:Picklist>

<qas:Postcode>LL55 4YF</qas:Postcode>

<qas:Score>100</qas:Score>

</qas:PicklistEntry>

...

<qas:PicklistEntry>

<qas:Moniker>08OGBREgPbBwAAAAABAwEAAAAAgKuFgAAAAAAAZAAAAAD.....AAAAAAAAAAAA</qas:Moniker>

<qas:PartialAddress>Turnpike Cottage, Beddgelert, CAERNARFON, Gwynedd LL55 4YF</qas:PartialAddress>

<qas:Picklist>Turnpike Cottage, Beddgelert, CAERNARFON, Gwynedd</qas:Picklist>

<qas:Postcode>LL55 4YF</qas:Postcode>

<qas:Score>100</qas:Score>

</qas:PicklistEntry>

</qas:QAPicklist>

</eih:QASearchResult>

</SOAP-ENV:Body>