GET api/township/GetLatestAvgTotalAssessmentChangeStatistics?countyId={countyId}
This method will return year over year percent change data for a avg total assessment for all townships in an individual county for display on the township heat map
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
countyId |
County Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Instance of
TownshipHeatMapPointDataName | Description | Type | Additional information |
---|---|---|---|
TownshipId | integer |
None. |
|
TaxYear | integer |
None. |
|
PriorTaxYear | integer |
None. |
|
Value | decimal number |
None. |
|
PercentChange | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "townshipId": 1, "taxYear": 2, "priorTaxYear": 3, "value": 4.0, "percentChange": 5.0 }
text/html
Sample:
{"townshipId":1,"taxYear":2,"priorTaxYear":3,"value":4.0,"percentChange":5.0}
application/xml, text/xml
Sample:
<TownshipHeatMapPointData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos"> <PercentChange>5</PercentChange> <PriorTaxYear>3</PriorTaxYear> <TaxYear>2</TaxYear> <TownshipId>1</TownshipId> <Value>4</Value> </TownshipHeatMapPointData>