POST api/Properties/GetPropertyOwnerAndSale
Request Information
URI Parameters
None.
Body Parameters
PropertyOwnerAndSale| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyType | string |
None. |
|
| Location_ID | integer |
None. |
|
| UserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PropertyType": "sample string 1",
"Location_ID": 2,
"UserID": 3
}
application/xml, text/xml
Sample:
<PropertyOwnerAndSale xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel.PropertieViews"> <Location_ID>2</Location_ID> <PropertyType>sample string 1</PropertyType> <UserID>3</UserID> </PropertyOwnerAndSale>
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>