POST api/tenancy/{id}/rentdifferencewithschedule
Gets the rent split/consolidate summary for determining next rent amounts.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
UpdateRentAmountDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| RentAmount | decimal number |
None. |
|
| PriceType | EnumDataContract |
None. |
|
| RentSchedule | RecurringScheduleDataContract |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"RentAmount": 1.0,
"PriceType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"RentSchedule": {
"Frequency": 1,
"StartDate": "2025-11-07T04:40:17.7746922Z",
"DaysOfWeek": [
1,
1
],
"DayOfMonth": 1,
"Interval": 2,
"IsSplit": true,
"AnniversaryDay": 4,
"AnniversaryMonth": 5,
"IsNewTenancy": true
}
}
Response Information
Resource Description
RentDayDifferenceDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| DaysDifference | integer |
None. |
|
| Amount | decimal number |
None. |
|
| NextRentAmountSplit | decimal number |
None. |
|
| NextRentAmountConsolidate | decimal number |
None. |
|
| DateDue | date |
None. |
|
| NextFullRentDate | date |
None. |
|
| NextSplitRentDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"DaysDifference": 1,
"Amount": 2.0,
"NextRentAmountSplit": 3.0,
"NextRentAmountConsolidate": 4.0,
"DateDue": "2025-11-07T04:40:17.7746922Z",
"NextFullRentDate": "2025-11-07T04:40:17.7746922Z",
"NextSplitRentDate": "2025-11-07T04:40:17.7746922Z"
}