GET api/Search/GetMapSearchByGuid?guid={guid}&startDate={startDate}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
guid
No documentation available.

Define this parameter in the request URI.

startDate
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "QueryTime": 1.1,
  "Results": [
    {
      "Id": 1,
      "Lat": 2.1,
      "Long": 3.1,
      "PT": 4,
      "PriceCPT": 5,
      "EnergyClass": "sample string 6",
      "IsActive": true,
      "HighlightTypes": "sample string 8"
    },
    {
      "Id": 1,
      "Lat": 2.1,
      "Long": 3.1,
      "PT": 4,
      "PriceCPT": 5,
      "EnergyClass": "sample string 6",
      "IsActive": true,
      "HighlightTypes": "sample string 8"
    },
    {
      "Id": 1,
      "Lat": 2.1,
      "Long": 3.1,
      "PT": 4,
      "PriceCPT": 5,
      "EnergyClass": "sample string 6",
      "IsActive": true,
      "HighlightTypes": "sample string 8"
    }
  ]
}

application/xml, text/xml

Sample:
<MapSearchResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Boliga.Web.API.Models">
  <QueryTime>1.1</QueryTime>
  <Results>
    <MapListingViewModel>
      <EnergyClass>sample string 6</EnergyClass>
      <HighlightTypes>sample string 8</HighlightTypes>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <Lat>2.1</Lat>
      <Long>3.1</Long>
      <PT>4</PT>
      <PriceCPT>5</PriceCPT>
    </MapListingViewModel>
    <MapListingViewModel>
      <EnergyClass>sample string 6</EnergyClass>
      <HighlightTypes>sample string 8</HighlightTypes>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <Lat>2.1</Lat>
      <Long>3.1</Long>
      <PT>4</PT>
      <PriceCPT>5</PriceCPT>
    </MapListingViewModel>
    <MapListingViewModel>
      <EnergyClass>sample string 6</EnergyClass>
      <HighlightTypes>sample string 8</HighlightTypes>
      <Id>1</Id>
      <IsActive>true</IsActive>
      <Lat>2.1</Lat>
      <Long>3.1</Long>
      <PT>4</PT>
      <PriceCPT>5</PriceCPT>
    </MapListingViewModel>
  </Results>
</MapSearchResult>