POST Tenant/GetEstateDeal

Request Information

URI Parameters

None.

Body Parameters

NetEstateCriteria
NameDescriptionTypeAdditional information
CityCode

string

None.

CityName

string

None.

EstateName

string

None.

Lat

decimal number

None.

Lng

decimal number

None.

BuildYear

integer

None.

IsGather

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "CityCode": "sample string 1",
  "CityName": "sample string 2",
  "EstateName": "sample string 3",
  "Lat": 4.1,
  "Lng": 5.1,
  "BuildYear": 6,
  "IsGather": true
}

application/xml, text/xml

Sample:
<NetEstateCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.FSS.Biz.EstateCore.Common.Criteria">
  <BuildYear>6</BuildYear>
  <CityCode>sample string 1</CityCode>
  <CityName>sample string 2</CityName>
  <EstateName>sample string 3</EstateName>
  <IsGather>true</IsGather>
  <Lat>4.1</Lat>
  <Lng>5.1</Lng>
</NetEstateCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfDataResult
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

DataResult

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": {
    "RealizeRate": 1.1,
    "RemoveRate": 2.1,
    "AvgCycle": 3,
    "Status": true,
    "Message": "sample string 5",
    "EstateName": "sample string 6"
  }
}

application/xml, text/xml

Sample:
<RemoteResponseOfDataResultMugPEgqt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
  <Errors>sample string 2</Errors>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.FSS.Biz.EstateCore.Common.Model">
    <d2p1:AvgCycle>3</d2p1:AvgCycle>
    <d2p1:EstateName>sample string 6</d2p1:EstateName>
    <d2p1:Message>sample string 5</d2p1:Message>
    <d2p1:RealizeRate>1.1</d2p1:RealizeRate>
    <d2p1:RemoveRate>2.1</d2p1:RemoveRate>
    <d2p1:Status>true</d2p1:Status>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfDataResultMugPEgqt>