GET api/county/GetStateEqualizationFactors
This method will retrieve time-series state equalization factor data for a county
Request Information
URI Parameters
None.
Body Parameters
Instance of
StateEqualizationFactorBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CountyId | integer |
None. |
|
| TaxYear | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"countyId": 1,
"taxYear": 1
}
text/html
Sample:
{"countyId":1,"taxYear":1}
application/xml, text/xml
Sample:
<StateEqualizationFactorBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.CountyBinding"> <CountyId>1</CountyId> <TaxYear>1</TaxYear> </StateEqualizationFactorBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of
StateEqualizationFactor| Name | Description | Type | Additional information |
|---|---|---|---|
| CountyId | integer |
Required |
|
| TaxYear | integer |
Required |
|
| Factor | decimal number |
None. |
|
| AsOfDate | date |
None. |
|
| County | County |
None. |
|
| Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"countyId": 1,
"taxYear": 2,
"factor": 3.0,
"asOfDate": "2025-11-01T05:55:58.3977831-05:00",
"county": {
"id": 1,
"name": "sample string 2",
"description": "sample string 3",
"appealProcessDescription": "sample string 4",
"fipsCode": "sample string 5",
"established": 1,
"population": 1,
"shapeArea": 1.1,
"shapeLen": 1.1,
"geom": "sample string 6",
"pinFormat": "sample string 7",
"propertyImageUrl": "sample string 8",
"appealYearIncrement": 9,
"taxPaymentYearIncrement": 10,
"reassessmentCycleInYears": 11,
"landArea": 12.1,
"waterArea": 13.1,
"reassessmentDescription": "sample string 14",
"exemptionRefundPeriodInYears": 15,
"assessorScheduleUrl": "sample string 16",
"borScheduleUrl": "sample string 17",
"stateId": 18,
"isSupported": true,
"assessmentPageUrl": "sample string 20",
"propertyCardPageUrl": "sample string 21",
"state": {
"id": 1,
"name": "sample string 2",
"shortName": "sample string 3",
"geom": "sample string 4",
"isTerritory": true,
"landArea": 6.1,
"waterArea": 7.1
}
},
"id": 5
}
text/html
Sample:
{"countyId":1,"taxYear":2,"factor":3.0,"asOfDate":"2025-11-01T05:55:58.3977831-05:00","county":{"id":1,"name":"sample string 2","description":"sample string 3","appealProcessDescription":"sample string 4","fipsCode":"sample string 5","established":1,"population":1,"shapeArea":1.1,"shapeLen":1.1,"geom":"sample string 6","pinFormat":"sample string 7","propertyImageUrl":"sample string 8","appealYearIncrement":9,"taxPaymentYearIncrement":10,"reassessmentCycleInYears":11,"landArea":12.1,"waterArea":13.1,"reassessmentDescription":"sample string 14","exemptionRefundPeriodInYears":15,"assessorScheduleUrl":"sample string 16","borScheduleUrl":"sample string 17","stateId":18,"isSupported":true,"assessmentPageUrl":"sample string 20","propertyCardPageUrl":"sample string 21","state":{"id":1,"name":"sample string 2","shortName":"sample string 3","geom":"sample string 4","isTerritory":true,"landArea":6.1,"waterArea":7.1}},"id":5}
application/xml, text/xml
Sample:
<StateEqualizationFactor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities">
<Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">5</Id>
<AsOfDate>2025-11-01T05:55:58.3977831-05:00</AsOfDate>
<County>
<Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
<AppealProcessDescription>sample string 4</AppealProcessDescription>
<AppealYearIncrement>9</AppealYearIncrement>
<AssessmentPageUrl>sample string 20</AssessmentPageUrl>
<AssessorScheduleUrl>sample string 16</AssessorScheduleUrl>
<BorScheduleUrl>sample string 17</BorScheduleUrl>
<Description>sample string 3</Description>
<Established>1</Established>
<ExemptionRefundPeriodInYears>15</ExemptionRefundPeriodInYears>
<FipsCode>sample string 5</FipsCode>
<Geom>sample string 6</Geom>
<IsSupported>true</IsSupported>
<LandArea>12.1</LandArea>
<Name>sample string 2</Name>
<PinFormat>sample string 7</PinFormat>
<Population>1</Population>
<PropertyCardPageUrl>sample string 21</PropertyCardPageUrl>
<PropertyImageUrl>sample string 8</PropertyImageUrl>
<ReassessmentCycleInYears>11</ReassessmentCycleInYears>
<ReassessmentDescription>sample string 14</ReassessmentDescription>
<ShapeArea>1.1</ShapeArea>
<ShapeLen>1.1</ShapeLen>
<State>
<Id xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Entities.Core">1</Id>
<Geom>sample string 4</Geom>
<IsTerritory>true</IsTerritory>
<LandArea>6.1</LandArea>
<Name>sample string 2</Name>
<ShortName>sample string 3</ShortName>
<WaterArea>7.1</WaterArea>
</State>
<StateId>18</StateId>
<TaxPaymentYearIncrement>10</TaxPaymentYearIncrement>
<WaterArea>13.1</WaterArea>
</County>
<CountyId>1</CountyId>
<Factor>3</Factor>
<TaxYear>2</TaxYear>
</StateEqualizationFactor>