POST api/tenancy/{id}/setrent
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-16T01:49:47.0489023Z",
"DaysOfWeek": [
1,
1
],
"DayOfMonth": 1,
"Interval": 2,
"IsSplit": true,
"AnniversaryDay": 4,
"AnniversaryMonth": 5,
"IsNewTenancy": true
}
}
Response Information
Resource Description
TenancyPriceDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| RentAmount | decimal number |
None. |
|
| PriceType | EnumDataContract |
None. |
|
| RentSchedule | RecurringScheduleDataContract |
None. |
Response Formats
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-16T01:49:47.0489023Z",
"DaysOfWeek": [
1,
1
],
"DayOfMonth": 1,
"Interval": 2,
"IsSplit": true,
"AnniversaryDay": 4,
"AnniversaryMonth": 5,
"IsNewTenancy": true
}
}