POST 17.0/app/tenancy/dailyrentamount

Description

Calculates the daily rent amount from the given rent amount and property price frequency.

URI Parameters

None.

The request containing the rent amount and property price frequency.

Name Description Type Additional information
RentAmount

decimal number

None.

PropertyPriceFreqency

byte

None.

application/json, text/json

Sample:
{
  "rentAmount": 1.0,
  "propertyPriceFreqency": 64
}

application/xml, text/xml

Sample:
<DailyRentAmountRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <RentAmount>1</RentAmount>
  <PropertyPriceFreqency>64</PropertyPriceFreqency>
</DailyRentAmountRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

A DailyRentAmountItem with the computed daily rent amount.

Name Description Type Additional information
DailyRentAmount

decimal number

None.

application/json, text/json

Sample:
{
  "dailyRentAmount": 1.0
}

application/xml, text/xml

Sample:
<DailyRentAmountItem xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <DailyRentAmount>1</DailyRentAmount>
</DailyRentAmountItem>