GET api/analysis/{propertyAddressId}/assessment-analysis/review-property-counts
This method will retrieve various comparable property counts available for assessment analysis for an individual property using its id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
propertyAddressId |
Property Address Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of
Collection of ComparablePropertiesCountName | Description | Type | Additional information |
---|---|---|---|
CountId | integer |
None. |
|
Description | string |
None. |
|
Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "countId": 1, "description": "sample string 2", "count": 3 }, { "countId": 1, "description": "sample string 2", "count": 3 } ]
text/html
Sample:
[{"countId":1,"description":"sample string 2","count":3},{"countId":1,"description":"sample string 2","count":3}]
application/xml, text/xml
Sample:
<ArrayOfComparablePropertiesCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.Pos.TaxAnalysis"> <ComparablePropertiesCount> <Count>3</Count> <CountId>1</CountId> <Description>sample string 2</Description> </ComparablePropertiesCount> <ComparablePropertiesCount> <Count>3</Count> <CountId>1</CountId> <Description>sample string 2</Description> </ComparablePropertiesCount> </ArrayOfComparablePropertiesCount>