POST api/Property/FilterPropertyList

Request Information

URI Parameters

None.

Body Parameters

PropertyFilterViewModel
NameDescriptionTypeAdditional information
propertymasterid

integer

None.

propertycode

string

None.

cityid

integer

None.

locationid

integer

None.

propertytitle

string

None.

propertyarea

decimal number

None.

propertyrate

integer

None.

propertytypeid

integer

None.

propertygroupid

integer

None.

propertylistid

integer

None.

spaceunitid

integer

None.

spaceunit

string

None.

propertyrating

integer

None.

pricemax

decimal number

None.

pricemin

decimal number

None.

minarea

decimal number

None.

maxarea

decimal number

None.

searchstring

string

None.

city

string

None.

pagenumber

integer

None.

RowspPage

integer

None.

status

string

None.

isactive

boolean

None.

logininfoid

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "propertymasterid": 1,
  "propertycode": "sample string 2",
  "cityid": 3,
  "locationid": 4,
  "propertytitle": "sample string 5",
  "propertyarea": 6.1,
  "propertyrate": 7,
  "propertytypeid": 8,
  "propertygroupid": 9,
  "propertylistid": 10,
  "spaceunitid": 11,
  "spaceunit": "sample string 12",
  "propertyrating": 13,
  "pricemax": 14.0,
  "pricemin": 15.0,
  "minarea": 16.1,
  "maxarea": 17.1,
  "searchstring": "sample string 18",
  "city": "sample string 19",
  "pagenumber": 20,
  "RowspPage": 21,
  "status": "sample string 22",
  "isactive": true,
  "logininfoid": 24
}

application/xml, text/xml

Sample:
<PropertyFilterViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DealsAPI.Models">
  <RowspPage>21</RowspPage>
  <city>sample string 19</city>
  <cityid>3</cityid>
  <isactive>true</isactive>
  <locationid>4</locationid>
  <logininfoid>24</logininfoid>
  <maxarea>17.1</maxarea>
  <minarea>16.1</minarea>
  <pagenumber>20</pagenumber>
  <pricemax>14</pricemax>
  <pricemin>15</pricemin>
  <propertyarea>6.1</propertyarea>
  <propertycode>sample string 2</propertycode>
  <propertygroupid>9</propertygroupid>
  <propertylistid>10</propertylistid>
  <propertymasterid>1</propertymasterid>
  <propertyrate>7</propertyrate>
  <propertyrating>13</propertyrating>
  <propertytitle>sample string 5</propertytitle>
  <propertytypeid>8</propertytypeid>
  <searchstring>sample string 18</searchstring>
  <spaceunit>sample string 12</spaceunit>
  <spaceunitid>11</spaceunitid>
  <status>sample string 22</status>
</PropertyFilterViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResultViewModel
NameDescriptionTypeAdditional information
status

boolean

None.

message

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "message": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DealsAPI.Models">
  <data />
  <message>sample string 2</message>
  <status>true</status>
</HttpResultViewModel>