GET api/ElasticStatistics
Statistics API that retrieves a breakdown of all recorded stats.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ElasticStatistics| Name | Description | Type | Additional information |
|---|---|---|---|
| Competitor |
Competitor property statistics. |
ElasticCompetitorStatisticGroup |
None. |
| Letting |
Letting Spicerhaart property statistics group. |
ElasticStatisticGroup |
None. |
| Selling |
EA Spicerhaart property statistics group. |
ElasticStatisticGroup |
None. |
| Total |
Total Spicerhaart property statistics group. |
ElasticStatisticGroup |
None. |
Response Formats
application/json, text/json
Sample:
{
"Competitor": {
"ForSale": 1,
"Sold": 2,
"Total": 3
},
"Letting": {
"Online": 1,
"Withdrawn": 2,
"Total": 3
},
"Selling": {
"Online": 1,
"Withdrawn": 2,
"Total": 3
},
"Total": {
"Online": 2,
"Withdrawn": 4,
"Total": 6
}
}
application/xml, text/xml
Sample:
<ElasticStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Spicerhaart.PropertyIndexer.Models">
<Competitor>
<ForSale>1</ForSale>
<Sold>2</Sold>
</Competitor>
<Letting>
<Online>1</Online>
<Withdrawn>2</Withdrawn>
</Letting>
<Selling>
<Online>1</Online>
<Withdrawn>2</Withdrawn>
</Selling>
</ElasticStatistics>