POST api/Properties/GetUserHistoricalPropertiesList

Request Information

URI Parameters

None.

Body Parameters

PropertyHistoricalData_PropertiesModels
NameDescriptionTypeAdditional information
UserID

integer

None.

PageNumber

integer

None.

PropertyCode

string

None.

PropertyTypeID

integer

None.

SubTypeID

integer

None.

FetchParentOrSubsidiary

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserID": 1,
  "PageNumber": 2,
  "PropertyCode": "sample string 3",
  "PropertyTypeID": 1,
  "SubTypeID": 1,
  "FetchParentOrSubsidiary": true
}

application/xml, text/xml

Sample:
<PropertyHistoricalData_PropertiesModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule">
  <FetchParentOrSubsidiary>true</FetchParentOrSubsidiary>
  <PageNumber>2</PageNumber>
  <PropertyCode>sample string 3</PropertyCode>
  <PropertyTypeID>1</PropertyTypeID>
  <SubTypeID>1</SubTypeID>
  <UserID>1</UserID>
</PropertyHistoricalData_PropertiesModels>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional 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>