ValidateAddressInternational
Resource URL
https://OnDemandServer/soap/ValidateAddressInternational
For a list of Spectrum OnDemand servers, see Connecting to Spectrum OnDemand Servers.
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/ValidateAddressInternational">
<soapenv:Header/>
<soapenv:Body>
<val:ValidateAddressInternationalRequest>
<val:Input>
<val:Row>
<val:AddressLine1>1825 Kramer LN</val:AddressLine1>
<val:PostalCode>78758</val:PostalCode>
</val:Row>
</val:Input>
</val:ValidateAddressInternationalRequest>
</soapenv:Body>
</soapenv:Envelope>
This would be the response:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns3:ValidateAddressInternationalResponse xmlns:ns2="http://spectrum.pb.com/"xmlns:ns3="http://www.pb.com/spectrum/services/ValidateAddressInternational">
<ns3:Output>
<ns3:Row>
<ns3:Confidence>88</ns3:Confidence>
<ns3:CouldNotValidate/>
<ns3:ProcessedBy>INTS</ns3:ProcessedBy>
<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:Row>
</ns3:Output>
</ns3:ValidateAddressInternationalResponse>
</soap:Body>
</soap:Envelope>