POST api/Properties/GetProperty_ReportsLogs

Request Information

URI Parameters

None.

Body Parameters

GetProperty_ReportsLogs
NameDescriptionTypeAdditional information
LocationID

integer

None.

PageNumber

integer

None.

PageSize

integer

None.

ReportType

string

None.

FromDate

date

None.

ToDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "LocationID": 1,
  "PageNumber": 2,
  "PageSize": 3,
  "ReportType": "sample string 4",
  "FromDate": "2026-04-06T21:36:06.3551271-05:00",
  "ToDate": "2026-04-06T21:36:06.3551271-05:00"
}

application/xml, text/xml

Sample:
<GetProperty_ReportsLogs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <FromDate>2026-04-06T21:36:06.3551271-05:00</FromDate>
  <LocationID>1</LocationID>
  <PageNumber>2</PageNumber>
  <PageSize>3</PageSize>
  <ReportType>sample string 4</ReportType>
  <ToDate>2026-04-06T21:36:06.3551271-05:00</ToDate>
</GetProperty_ReportsLogs>

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>