POST api/Property/LoadBrokerPropertyList

Request Information

URI Parameters

None.

Body Parameters

PropertyListViewModel
NameDescriptionTypeAdditional information
propertymasterid

integer

None.

propertytypeid

integer

None.

propertylistid

integer

None.

cityid

integer

None.

logininfoid

integer

None.

propertytitle

string

None.

brokerinfoid

integer

None.

pagenumber

integer

None.

postedon

date

None.

propertyrate

integer

None.

city

string

None.

propertyrating

integer

None.

propertycode

string

None.

status

string

None.

isverified

boolean

None.

isactive

boolean

None.

brokername

string

None.

spaceunitid

integer

None.

spaceunit

string

None.

clienttype

string

None.

Request Formats

application/json, text/json

Sample:
{
  "propertymasterid": 1,
  "propertytypeid": 2,
  "propertylistid": 3,
  "cityid": 4,
  "logininfoid": 5,
  "propertytitle": "sample string 6",
  "brokerinfoid": 7,
  "pagenumber": 8,
  "postedon": "2025-12-11T02:04:26.0146357+05:30",
  "propertyrate": 10,
  "city": "sample string 11",
  "propertyrating": 12,
  "propertycode": "sample string 13",
  "status": "sample string 14",
  "isverified": true,
  "isactive": true,
  "brokername": "sample string 17",
  "spaceunitid": 18,
  "spaceunit": "sample string 19",
  "clienttype": "sample string 20"
}

application/xml, text/xml

Sample:
<PropertyListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DealsAPI.Models">
  <brokerinfoid>7</brokerinfoid>
  <brokername>sample string 17</brokername>
  <city>sample string 11</city>
  <cityid>4</cityid>
  <clienttype>sample string 20</clienttype>
  <isactive>true</isactive>
  <isverified>true</isverified>
  <logininfoid>5</logininfoid>
  <pagenumber>8</pagenumber>
  <postedon>2025-12-11T02:04:26.0146357+05:30</postedon>
  <propertycode>sample string 13</propertycode>
  <propertylistid>3</propertylistid>
  <propertymasterid>1</propertymasterid>
  <propertyrate>10</propertyrate>
  <propertyrating>12</propertyrating>
  <propertytitle>sample string 6</propertytitle>
  <propertytypeid>2</propertytypeid>
  <spaceunit>sample string 19</spaceunit>
  <spaceunitid>18</spaceunitid>
  <status>sample string 14</status>
</PropertyListViewModel>

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>