GET RealProperty/GetSummary
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PropertySummary| Name | Description | Type | Additional information |
|---|---|---|---|
| totalcount | integer |
None. |
|
| totalamount | decimal number |
None. |
|
| status | string |
None. |
|
| developer_id | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"totalcount": 1,
"totalamount": 2.0,
"status": "sample string 3",
"developer_id": 4
},
{
"totalcount": 1,
"totalamount": 2.0,
"status": "sample string 3",
"developer_id": 4
}
]
application/xml, text/xml
Sample:
<ArrayOfPropertySummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Realty.Model">
<PropertySummary>
<developer_id>4</developer_id>
<status>sample string 3</status>
<totalamount>2</totalamount>
<totalcount>1</totalcount>
</PropertySummary>
<PropertySummary>
<developer_id>4</developer_id>
<status>sample string 3</status>
<totalamount>2</totalamount>
<totalcount>1</totalcount>
</PropertySummary>
</ArrayOfPropertySummary>