GET api/property/GetPropertyTaxRateChanges?Pin={Pin}&TaxYear={TaxYear}

This method will return property tax rate change statistics for a property with a specified pin

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Pin

string

None.

TaxYear

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of

PropertyTaxRateStatistics
NameDescriptionTypeAdditional information
Pin

string

None.

TaxCode

string

None.

TaxYear

integer

None.

PriorTaxYear

integer

None.

CurrentYearTaxRate

decimal number

None.

PriorYearTaxRate

decimal number

None.

YearOverYearTaxRateChange

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "pin": "sample string 1",
  "taxCode": "sample string 2",
  "taxYear": 3,
  "priorTaxYear": 4,
  "currentYearTaxRate": 5.0,
  "priorYearTaxRate": 6.0,
  "yearOverYearTaxRateChange": 7.0
}

text/html

Sample:
{"pin":"sample string 1","taxCode":"sample string 2","taxYear":3,"priorTaxYear":4,"currentYearTaxRate":5.0,"priorYearTaxRate":6.0,"yearOverYearTaxRateChange":7.0}

application/xml, text/xml

Sample:
<PropertyTaxRateStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos">
  <CurrentYearTaxRate>5</CurrentYearTaxRate>
  <Pin>sample string 1</Pin>
  <PriorTaxYear>4</PriorTaxYear>
  <PriorYearTaxRate>6</PriorYearTaxRate>
  <TaxCode>sample string 2</TaxCode>
  <TaxYear>3</TaxYear>
  <YearOverYearTaxRateChange>7</YearOverYearTaxRateChange>
</PropertyTaxRateStatistics>