POST api/Property/Search?userId={userId}&page={page}&size={size}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId | integer |
Required |
|
| page | integer |
Default value is 1 |
|
| size | integer |
Default value is 10 |
Body Parameters
SearchModel| Name | Description | Type | Additional information |
|---|---|---|---|
| project_name | string |
None. |
|
| type | string |
None. |
|
| category | string |
None. |
|
| bhk_type | string |
None. |
|
| furnish_type | string |
None. |
|
| amount | decimal number |
None. |
|
| location | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"project_name": "sample string 1",
"type": "sample string 2",
"category": "sample string 3",
"bhk_type": "sample string 4",
"furnish_type": "sample string 5",
"amount": 1.0,
"location": "sample string 6"
}
application/xml, text/xml
Sample:
<SearchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MatchDealsWebAPI_New.Models.Common"> <amount>1</amount> <bhk_type>sample string 4</bhk_type> <category>sample string 3</category> <furnish_type>sample string 5</furnish_type> <location>sample string 6</location> <project_name>sample string 1</project_name> <type>sample string 2</type> </SearchModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |