POST API/Property/GetAllCommunityUid

获取小区查询方式 SearchType true根据名称搜索,false 根据坐标搜索1KM内

Request Information

Parameters

NameDescriptionAdditional information
community
查询方式 SearchType  true根据名称搜索,false 根据坐标搜索1KM内

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Lat": "sample string 2",
  "Lng": "sample string 3",
  "SearchType": true
}

application/xml, text/xml

Sample:
<SearchCommunity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GS.R.API4._0.Models">
  <Lat>sample string 2</Lat>
  <Lng>sample string 3</Lng>
  <Name>sample string 1</Name>
  <SearchType>true</SearchType>
</SearchCommunity>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SearchCommunity'.