GET api/county/{countyId}/appeal-types

This method will retrieve all support appeal types for a specific county

Request Information

URI Parameters

NameDescriptionTypeAdditional information
countyId

County identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of

Collection of PropertyAppealTypeModel
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

CanCombineWithOtherAppeals

boolean

None.

CountyId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "name": "sample string 2",
    "canCombineWithOtherAppeals": true,
    "countyId": 4
  },
  {
    "id": 1,
    "name": "sample string 2",
    "canCombineWithOtherAppeals": true,
    "countyId": 4
  }
]

text/html

Sample:
[{"id":1,"name":"sample string 2","canCombineWithOtherAppeals":true,"countyId":4},{"id":1,"name":"sample string 2","canCombineWithOtherAppeals":true,"countyId":4}]

application/xml, text/xml

Sample:
<ArrayOfPropertyAppealTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos.TaxAnalysis">
  <PropertyAppealTypeModel>
    <CanCombineWithOtherAppeals>true</CanCombineWithOtherAppeals>
    <CountyId>4</CountyId>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </PropertyAppealTypeModel>
  <PropertyAppealTypeModel>
    <CanCombineWithOtherAppeals>true</CanCombineWithOtherAppeals>
    <CountyId>4</CountyId>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </PropertyAppealTypeModel>
</ArrayOfPropertyAppealTypeModel>