GET api/township/GetLatestTownshipStatistics?townshipId={townshipId}
This method will retrieve latest township tax rate statistical data for an individual township
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
townshipId |
Township Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of
TownshipTaxRateStatisticsName | Description | Type | Additional information |
---|---|---|---|
TownshipId | integer |
None. |
|
Name | string |
None. |
|
TaxYear | integer |
None. |
|
PriorTaxYear | integer |
None. |
|
CurrentYearTaxRateMin | decimal number |
None. |
|
PriorYearTaxRateMin | decimal number |
None. |
|
YearOverYearTaxRateMinChange | decimal number |
None. |
|
CurrentYearTaxRateAvg | decimal number |
None. |
|
PriorYearTaxRateAvg | decimal number |
None. |
|
YearOverYearTaxRateAvgChange | decimal number |
None. |
|
CurrentYearTaxRateMax | decimal number |
None. |
|
PriorYearTaxRateMax | decimal number |
None. |
|
YearOverYearTaxRateMaxChange | decimal number |
None. |
|
TaxCodeMaxRate | string |
None. |
|
TaxCodeMinRate | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "townshipId": 1, "name": "sample string 2", "taxYear": 3, "priorTaxYear": 4, "currentYearTaxRateMin": 5.0, "priorYearTaxRateMin": 1.0, "yearOverYearTaxRateMinChange": 1.0, "currentYearTaxRateAvg": 6.0, "priorYearTaxRateAvg": 1.0, "yearOverYearTaxRateAvgChange": 1.0, "currentYearTaxRateMax": 7.0, "priorYearTaxRateMax": 1.0, "yearOverYearTaxRateMaxChange": 1.0, "taxCodeMaxRate": "sample string 8", "taxCodeMinRate": "sample string 9" }
text/html
Sample:
{"townshipId":1,"name":"sample string 2","taxYear":3,"priorTaxYear":4,"currentYearTaxRateMin":5.0,"priorYearTaxRateMin":1.0,"yearOverYearTaxRateMinChange":1.0,"currentYearTaxRateAvg":6.0,"priorYearTaxRateAvg":1.0,"yearOverYearTaxRateAvgChange":1.0,"currentYearTaxRateMax":7.0,"priorYearTaxRateMax":1.0,"yearOverYearTaxRateMaxChange":1.0,"taxCodeMaxRate":"sample string 8","taxCodeMinRate":"sample string 9"}
application/xml, text/xml
Sample:
<TownshipTaxRateStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos"> <CurrentYearTaxRateAvg>6</CurrentYearTaxRateAvg> <CurrentYearTaxRateMax>7</CurrentYearTaxRateMax> <CurrentYearTaxRateMin>5</CurrentYearTaxRateMin> <Name>sample string 2</Name> <PriorTaxYear>4</PriorTaxYear> <PriorYearTaxRateAvg>1</PriorYearTaxRateAvg> <PriorYearTaxRateMax>1</PriorYearTaxRateMax> <PriorYearTaxRateMin>1</PriorYearTaxRateMin> <TaxCodeMaxRate>sample string 8</TaxCodeMaxRate> <TaxCodeMinRate>sample string 9</TaxCodeMinRate> <TaxYear>3</TaxYear> <TownshipId>1</TownshipId> <YearOverYearTaxRateAvgChange>1</YearOverYearTaxRateAvgChange> <YearOverYearTaxRateMaxChange>1</YearOverYearTaxRateMaxChange> <YearOverYearTaxRateMinChange>1</YearOverYearTaxRateMinChange> </TownshipTaxRateStatistics>