POST api/Properties/SearchPropertiesPublically
Request Information
URI Parameters
None.
Body Parameters
PropertySearchingView| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyCode | string |
None. |
|
| PropertyTypeID | integer |
None. |
|
| PropertyType | string |
None. |
|
| PropertySubtypeID | integer |
None. |
|
| PropertySubtype | string |
None. |
|
| MaxAmount | decimal number |
None. |
|
| MinAmount | decimal number |
None. |
|
| CountryID | integer |
None. |
|
| ProvinceID | integer |
None. |
|
| CityID | integer |
None. |
|
| TownID | integer |
None. |
|
| CountyID | integer |
None. |
|
| IsSale | boolean |
None. |
|
| IsRent | boolean |
None. |
|
| AreaMeasurementTypeID | integer |
None. |
|
| MinArea | decimal number |
None. |
|
| MaxArea | decimal number |
None. |
|
| MinYearBuilt | date |
None. |
|
| MaxYearBuilt | date |
None. |
|
| ReviewOptionID | integer |
None. |
|
| SortOrder | string |
None. |
|
| propertyStatus | Collection of string |
None. |
|
| PageNumber | integer |
None. |
|
| EntriesPerPage | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PropertyCode": "sample string 1",
"PropertyTypeID": 1,
"PropertyType": "sample string 2",
"PropertySubtypeID": 1,
"PropertySubtype": "sample string 3",
"MaxAmount": 1.0,
"MinAmount": 1.0,
"CountryID": 1,
"ProvinceID": 1,
"CityID": 1,
"TownID": 1,
"CountyID": 1,
"IsSale": true,
"IsRent": true,
"AreaMeasurementTypeID": 1,
"MinArea": 1.0,
"MaxArea": 1.0,
"MinYearBuilt": "2026-04-06T21:36:25.9140253-05:00",
"MaxYearBuilt": "2026-04-06T21:36:25.9140253-05:00",
"ReviewOptionID": 1,
"SortOrder": "sample string 4",
"propertyStatus": [
"sample string 1",
"sample string 2"
],
"PageNumber": 1,
"EntriesPerPage": 1
}
application/xml, text/xml
Sample:
<PropertySearchingView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
<AreaMeasurementTypeID>1</AreaMeasurementTypeID>
<CityID>1</CityID>
<CountryID>1</CountryID>
<CountyID>1</CountyID>
<EntriesPerPage>1</EntriesPerPage>
<IsRent>true</IsRent>
<IsSale>true</IsSale>
<MaxAmount>1</MaxAmount>
<MaxArea>1</MaxArea>
<MaxYearBuilt>2026-04-06T21:36:25.9140253-05:00</MaxYearBuilt>
<MinAmount>1</MinAmount>
<MinArea>1</MinArea>
<MinYearBuilt>2026-04-06T21:36:25.9140253-05:00</MinYearBuilt>
<PageNumber>1</PageNumber>
<PropertyCode>sample string 1</PropertyCode>
<PropertySubtype>sample string 3</PropertySubtype>
<PropertySubtypeID>1</PropertySubtypeID>
<PropertyType>sample string 2</PropertyType>
<PropertyTypeID>1</PropertyTypeID>
<ProvinceID>1</ProvinceID>
<ReviewOptionID>1</ReviewOptionID>
<SortOrder>sample string 4</SortOrder>
<TownID>1</TownID>
<propertyStatus xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</propertyStatus>
</PropertySearchingView>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ResultStatus |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics"> <Data /> <Message>sample string 1</Message> <Status>Success</Status> </Result>