ValidateAddressLoqate

ValidateAddressLoqate standardizes and validates addresses using postal authority address data. ValidateAddress Loqate can correct information and format the address using the format preferred by the applicable postal authority. It also adds missing postal information, such as postal codes, city names, state/province names, and so on.

ValidateAddressLoqate also returns result indicators about validation attempts, such as whether or not ValidateAddressLoqate validated the address, the level of confidence in the returned address, the reason for failure if the address could not be validated, and more.

During address matching and standardization, ValidateAddressLoqate separates address lines into components and compares them to the contents of the Universal Addressing Module databases. If a match is found, the input address is standardized to the database information. If no database match is found, ValidateAddressLoqate optionally formats the input addresses. The formatting process attempts to structure the address lines according to the conventions of the appropriate postal authority.

ValidateAddressLoqate is part of the Universal Addressing Module.

Resource URL

http://server:port/soap/ValidateAddressLoqate

Example

The following shows a SOAP request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:val="http://www.pb.com/spectrum/services/ValidateAddressLoqate"
xmlns:spec="http://spectrum.pb.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <val:ValidateAddressLoqateRequest>
         <val:input_port>
            <val:Address>
               <val:AddressLine1>1825 Kramer Ln</val:AddressLine1>
               <val:City>Austin</val:City>
               <val:StateProvince>TX</val:StateProvince>
            </val:Address>
         </val:input_port>
      </val:ValidateAddressLoqateRequest>
   </soapenv:Body>
</soapenv:Envelope>

This would be the response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns3:ValidateAddressLoqateResponse xmlns:ns2="http://spectrum.pb.com/"
       xmlns:ns3="http://www.pb.com/spectrum/services/ValidateAddressLoqate">
         <ns3:output_port>
            <ns3:Address>
               <ns3:Confidence>95</ns3:Confidence>
               <ns3:CouldNotValidate/>
               <ns3:ProcessedBy>LOQATE</ns3:ProcessedBy>
               <ns3:MatchScore>100.0</ns3:MatchScore>
               <ns3:AddressLine1>1825 Kramer Ln</ns3:AddressLine1>
               <ns3:AddressLine2/>
               <ns3:City>Austin</ns3:City>
               <ns3:StateProvince>TX</ns3:StateProvince>
               <ns3:PostalCode>78758-4260</ns3:PostalCode>
               <ns3:PostalCode.Base>78758</ns3:PostalCode.Base>
               <ns3:PostalCode.AddOn>4260</ns3:PostalCode.AddOn>
               <ns3:Country>United States</ns3:Country>
               <ns3:FirmName/>
               <ns3:user_fields/>
            </ns3:Address>
         </ns3:output_port>
      </ns3:ValidateAddressLoqateResponse>
   </soap:Body>
</soap:Envelope>