Click here for a complete list of operations.
VerifyAddress
Verify an address. Note: No longer requires valid USPS ID - Use '000CLOUD0000' as the uspsUserID.
SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /1.0/TaxCloud.asmx HTTP/1.1
Host: api.taxcloud.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://taxcloud.net/VerifyAddress"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<VerifyAddress xmlns="http://taxcloud.net">
<uspsUserID>string</uspsUserID>
<address1>string</address1>
<address2>string</address2>
<city>string</city>
<state>string</state>
<zip5>string</zip5>
<zip4>string</zip4>
<apiLoginID>string</apiLoginID>
<apiKey>string</apiKey>
</VerifyAddress>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<VerifyAddressResponse xmlns="http://taxcloud.net">
<VerifyAddressResult>
<rdi>string</rdi>
<ErrNumber>string</ErrNumber>
<ErrDescription>string</ErrDescription>
</VerifyAddressResult>
</VerifyAddressResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /1.0/TaxCloud.asmx HTTP/1.1
Host: api.taxcloud.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<VerifyAddress xmlns="http://taxcloud.net">
<uspsUserID>string</uspsUserID>
<address1>string</address1>
<address2>string</address2>
<city>string</city>
<state>string</state>
<zip5>string</zip5>
<zip4>string</zip4>
<apiLoginID>string</apiLoginID>
<apiKey>string</apiKey>
</VerifyAddress>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<VerifyAddressResponse xmlns="http://taxcloud.net">
<VerifyAddressResult>
<rdi>string</rdi>
<ErrNumber>string</ErrNumber>
<ErrDescription>string</ErrDescription>
</VerifyAddressResult>
</VerifyAddressResponse>
</soap12:Body>
</soap12:Envelope>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /1.0/TaxCloud.asmx/VerifyAddress HTTP/1.1 Host: api.taxcloud.com Content-Type: application/x-www-form-urlencoded Content-Length: length uspsUserID=string&address1=string&address2=string&city=string&state=string&zip5=string&zip4=string&apiLoginID=string&apiKey=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <VerifiedAddress xmlns="http://taxcloud.net"> <rdi>string</rdi> <ErrNumber>string</ErrNumber> <ErrDescription>string</ErrDescription> </VerifiedAddress>
©2009-2025 The Federal Tax Authority, LLC (FedTax)