GET api/taxcode/GetTaxRatesForTaxCode?taxcode={taxcode}
This method will retrieve taxcode statistics data for a Township Page based on the taxcode id. Data will be retrieve for a current appeal tax year only
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taxcode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of
Collection of TaxRate| Name | Description | Type | Additional information |
|---|---|---|---|
| TaxYear | integer |
None. |
|
| Rate | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"taxYear": 1,
"rate": 2.0
},
{
"taxYear": 1,
"rate": 2.0
}
]
text/html
Sample:
[{"taxYear":1,"rate":2.0},{"taxYear":1,"rate":2.0}]
application/xml, text/xml
Sample:
<ArrayOfTaxRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos">
<TaxRate>
<Rate>2</Rate>
<TaxYear>1</TaxYear>
</TaxRate>
<TaxRate>
<Rate>2</Rate>
<TaxYear>1</TaxYear>
</TaxRate>
</ArrayOfTaxRate>