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