AssignGeoTAXInfoPlus - Spectrum_OnDemand - Latest

Spectrum OnDemand Web Services (SOAP)

Product type
Software
Portfolio
Verify
Product family
Product
Spectrum OnDemand
Version
Latest
Language
English
Product name
Spectrum OnDemand
Title
Spectrum OnDemand Web Services (SOAP)
First publish date
2006

AssignGeoTAXInfoPlus identifies the tax districts that apply to a given address. Specifically, AssignGeoTAXInfoPlus returns the following information about an address:

  • Latitude/longitude coordinates
  • FIPS state codes and county codes
  • County names
  • MCD/CCD codes and names
  • CBSA/CSA codes and names
  • Place FIPS and GNIS codes and names
  • Incorporated or unincorporated status codes
  • Cross-reference tax keys
  • Result indicators
  • Optionally, the relationship of an address to user-defined polygons

AssignGeoTAXInfoPlus optionally includes enhanced tax jurisdiction information for an address, including:

  • Insurance premium districts—Areas designated for the collection of taxes imposed on insurance policy premiums based on the policy holder's address. Insurance premium districts are created by state governments.
  • Payroll tax districts—Areas designated for the collection of taxes imposed on employers to support state or local government facilities and services based on the employee's and/or employer's address. Examples include taxes collected for districts to pay for schools, police, or other services. Payroll tax districts are created by state or local governments.
  • Payroll system tax codes—Codes that represent specific jurisdictions that collect payroll tax. Using payroll system tax codes has advantages over using the payroll tax district information returned by Assign GeoTAX Info:
    • AssignGeoTAXInfoPlus uses an additional database to determine payroll tax codes, resulting in more accurate payroll tax determination.
    • Many payroll systems use specific codes to determine withholding amounts. Since you can customize the payroll tax codes returned by AssignGeoTAXInfoPlus, you can set up a process where AssignGeoTAXInfoPlus returns the exact payroll tax codes required by your payroll system instead of returning jurisdictional IDs that must then be translated into the codes used by your system.
  • Special purpose tax districts—Areas designated for the collection of taxes imposed on residents to support specialized services for residents of the district based on the resident's address. Examples include services such as sewer service, transit service, or water resources. Special purpose tax districts are created by legislative action, court action, or public referendums. This optional information requires the use of boundary files which require an additional license. Contact your sales representative for more information.
  • Sales and Use Tax Rates—Using the optional Sales and Use Tax Rate file, AssignGeoTAXInfoPlus can return sales and use tax rates for each of the assigned tax jurisdictions as well as the total tax rate for the assigned locations.

Resource URL

https://OnDemandServer/soap/AssignGeoTAXInfoPlus

For a list of Spectrum OnDemand servers, see Connecting to Spectrum OnDemand Servers.

Example

This shows a SOAP request:

<soapenv:Envelope
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
	xmlns:ass="http://www.pb.com/spectrum/services/AssignGeoTAXInfoPlus">
	<soapenv:Header/>
	<soapenv:Body>
		<ass:AssignGeoTAXInfoPlusRequest>
			<ass:Input>
				<ass:Row>
					<!--Optional:-->
					<ass:AddressLine1>801 Randall Rd</ass:AddressLine1>
					<!--Optional:-->
					<ass:AddressLine2></ass:AddressLine2>
					<!--Optional:-->
					<ass:AddressLine3></ass:AddressLine3>
					<!--Optional:-->
					<ass:AddressLine4></ass:AddressLine4>
					<!--Optional:-->
					<ass:City>Batavia</ass:City>
					<!--Optional:-->
					<ass:Country></ass:Country>
					<!--Optional:-->
					<ass:FirmName></ass:FirmName>
					<!--Optional:-->
					<ass:PostalCode></ass:PostalCode>
					<!--Optional:-->
					<ass:StateProvince>IL</ass:StateProvince>
					<!--Optional:-->
					<ass:USUrbanName></ass:USUrbanName>
					<!--Optional:-->
					<ass:user_fields>
						<ass:user_field>
							<ass:name>?</ass:name>
							<ass:value>?</ass:value>
						</ass:user_field>
					</ass:user_fields>
				</ass:Row>
			</ass:Input>
		</ass:AssignGeoTAXInfoPlusRequest>
	</soapenv:Body>
</soapenv:Envelope>

This would be the response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns3:AssignGeoTAXInfoPlusResponse xmlns:ns2="http://spectrum.precisely.com/" xmlns:ns3="http://www.precisely.com/spectrum/services/AssignGeoTAXInfoPlus">
         <ns3:Output>
            <ns3:Row>
               <ns3:AddressLine1>801 N Randall Rd</ns3:AddressLine1>
               <ns3:AddressLine2/>
               <ns3:Census.MatchCode>S</ns3:Census.MatchCode>
               <ns3:Census.MatchLevel>Street</ns3:Census.MatchLevel>
               <ns3:City>Batavia</ns3:City>
               <ns3:Confidence>100.0</ns3:Confidence>
               <ns3:Country>United States Of America</ns3:Country>
               <ns3:CountryLevel>A</ns3:CountryLevel>
               <ns3:County.Code>089</ns3:County.Code>
               <ns3:County.Name>Kane</ns3:County.Name>
               <ns3:GNISCode>002394077</ns3:GNISCode>
               <ns3:MatchScore>0</ns3:MatchScore>
               <ns3:Place.ClassCode>C1</ns3:Place.ClassCode>
               <ns3:Place.Code>04078</ns3:Place.Code>
               <ns3:Place.IncorporatedFlag>Inc</ns3:Place.IncorporatedFlag>
               <ns3:Place.LastAnnexedDate>02/2014</ns3:Place.LastAnnexedDate>
               <ns3:Place.LastUpdatedDate>05/2015</ns3:Place.LastUpdatedDate>
               <ns3:Place.LastVerifiedDate>04/2014</ns3:Place.LastVerifiedDate>
               <ns3:Place.Name>Batavia</ns3:Place.Name>
               <ns3:PostalCode>605101992</ns3:PostalCode>
               <ns3:PostalCode.AddOn>1992</ns3:PostalCode.AddOn>
               <ns3:PostalCode.Base>60510</ns3:PostalCode.Base>
               <ns3:ProcessedBy>GTX</ns3:ProcessedBy>
               <ns3:RecordType>Normal</ns3:RecordType>
               <ns3:State.Abbreviation>IL</ns3:State.Abbreviation>
               <ns3:StateCode>17</ns3:StateCode>
               <ns3:StateProvince>IL</ns3:StateProvince>
               <ns3:user_fields/>
            </ns3:Row>
         </ns3:Output>
      </ns3:AssignGeoTAXInfoPlusResponse>
   </soap:Body>
</soap:Envelope>