Table of Contents

Search

  1. Preface
  2. Introduction to Informatica Address Verification
  3. Informatica Address Verification Interface
  4. Informatica Address Verification Request Parameters
  5. Informatica Address Verification Response Elements
  6. Examples

Developer Guide

Developer Guide

Example: Identifying an Address Type for an Address

Example: Identifying an Address Type for an Address

The following examples show you can verify a high-rise address in the United States and a street address in Germany.

A High-Rise Address in the United States

You submit the following request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://validator5.AddressDoctor.com/Webservice5/v4"> <soapenv:Header/> <soapenv:Body> <Process> <login>*******</login> <password>*******</password> <parameters> <ProcessMode>BATCH</ProcessMode> </parameters> <addresses> <Address> <FormattedAddress> <string>15501 Weston Parkway</string> <string>Suite 150</string> <string>Cary, NC 27513</string> <string>USA</string> </FormattedAddress> </Address> </addresses> </Process> </soapenv:Body> </soapenv:Envelope>
The following result output shows the address type as H, which denotes a high-rise building in the United States:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <ProcessResponse xmlns="http://validator5.AddressDoctor.com/Webservice5/v4"> <ProcessResult> <StatusCode>100</StatusCode> <StatusMessage>OK</StatusMessage> <Results> <Result> <ProcessStatus>C4</ProcessStatus> <CountryISO3>USA</CountryISO3> <ResultDataSet> <ResultData> <ResultNumber>1</ResultNumber> <MailabilityScore>5</MailabilityScore> <ResultPercentage>90.09</ResultPercentage> <ElementInputStatus>60606050600000500060</ElementInputStatus> <ElementResultStatus>F8F0F8E0F00000E000E0</ElementResultStatus> <ElementRelevance>11101010100000100010</ElementRelevance> <ExtElementStatus>00000000000000000000</ExtElementStatus> <AddressResolutionCode>00000000000000000000</AddressResolutionCode>
<AddressType>H</AddressType>
<LanguageISO3>ENG</LanguageISO3> <Address> <SubBuilding> <string>STE 150</string> </SubBuilding> <Street> <string>WESTON PKWY</string> </Street> <HouseNumber> <string>15501</string> </HouseNumber> <Locality> <string>CARY</string> </Locality> <PostalCode> <string>27513-8638</string> </PostalCode> <Province> <string>NC</string> <string>WAKE</string> </Province> <Country> <string>UNITED STATES</string> </Country> <DeliveryAddressLines> <string>15501 WESTON PKWY STE 150</string> </DeliveryAddressLines> <CountrySpecificLocalityLine> <string>CARY NC 27513-8638</string> </CountrySpecificLocalityLine> <FormattedAddress> <string>15501 WESTON PKWY STE 150</string> <string>CARY NC 27513-8638</string> <string>UNITED STATES</string> </FormattedAddress> <AddressComplete>15501 WESTON PKWY STE 150;CARY NC 27513-8638;UNITED STATES</AddressComplete> </Address> </ResultData> </ResultDataSet> </Result> </Results> </ProcessResult> </ProcessResponse> </soap:Body> </soap:Envelope>

A Street Address in Germany

You submit the following request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://validator5.AddressDoctor.com/Webservice5/v4"> <soapenv:Header/> <soapenv:Body> <Process> <login>*****</login> <password>*******</password> <parameters> <ProcessMode>BATCH</ProcessMode> </parameters> <addresses> <Address> <FormattedAddress> <string>Lyoner Strasse 15</string> <string>60528 Frankfurt</string> <string>Germany</string> </FormattedAddress> </Address> </addresses> </Process> </soapenv:Body> </soapenv:Envelope>
The following output shows the address type as
S
, which denotes a street address in Germany:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <ProcessResponse xmlns="http://validator5.AddressDoctor.com/Webservice5/v4"> <ProcessResult> <StatusCode>100</StatusCode> <StatusMessage>OK</StatusMessage> <Results> <Result> <ProcessStatus>V3</ProcessStatus> <CountryISO3>DEU</CountryISO3> <ResultDataSet> <ResultData> <ResultNumber>1</ResultNumber> <MailabilityScore>5</MailabilityScore> <ResultPercentage>100.00</ResultPercentage> <ElementInputStatus>60500050600000000060</ElementInputStatus> <ElementResultStatus>F0D880E0F000000000E0</ElementResultStatus> <ElementRelevance>10100010100000000010</ElementRelevance> <ExtElementStatus>00005000000000000000</ExtElementStatus> <AddressResolutionCode>00000000000000000000</AddressResolutionCode>
<AddressType>S</AddressType>
<LanguageISO3>DEU</LanguageISO3> <Address> <Street> <string>Lyoner Str.</string> </Street> <HouseNumber> <string>15</string> </HouseNumber> <Locality> <string>Frankfurt am Main</string> <string>Schwanheim</string> </Locality> <PostalCode> <string>60528</string> </PostalCode> <Province> <string>Hessen</string> </Province> <Country> <string>GERMANY</string> </Country> <DeliveryAddressLines> <string>Lyoner Str. 15</string> </DeliveryAddressLines> <CountrySpecificLocalityLine> <string>60528 Frankfurt am Main</string> </CountrySpecificLocalityLine> <FormattedAddress> <string>Lyoner Str. 15</string> <string>60528 Frankfurt am Main</string> <string>GERMANY</string> </FormattedAddress> <AddressComplete>Lyoner Str. 15;60528 Frankfurt am Main;GERMANY</AddressComplete> </Address> </ResultData> </ResultDataSet> </Result> </Results> </ProcessResult> </ProcessResponse> </soap:Body> </soap:Envelope>

0 COMMENTS

We’d like to hear from you!