GET api/Authentication/GetHousePropertyList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of HouseProperty
NameDescriptionTypeAdditional information
Id

integer

None.

Fid

integer

None.

HousePropertyTypeName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Fid": 2,
    "HousePropertyTypeName": "sample string 3"
  },
  {
    "Id": 1,
    "Fid": 2,
    "HousePropertyTypeName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHouseProperty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeiXin.WebAPI.Models.AuthenticationModels">
  <HouseProperty>
    <Fid>2</Fid>
    <HousePropertyTypeName>sample string 3</HousePropertyTypeName>
    <Id>1</Id>
  </HouseProperty>
  <HouseProperty>
    <Fid>2</Fid>
    <HousePropertyTypeName>sample string 3</HousePropertyTypeName>
    <Id>1</Id>
  </HouseProperty>
</ArrayOfHouseProperty>