POST api/tenancy/{id}/setrentschedule
Set Rent Schedule. Processes this tenancy API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique identifier of the requested resource. |
integer |
Required |
Body Parameters
The recurring schedule data contract supplied with the request.
RecurringScheduleDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Frequency |
The frequency classification. |
Frequency |
None. |
| StartDate |
The start date, expressed as a date and time. |
date |
None. |
| DaysOfWeek |
The collection of days of week. |
Collection of DayOfWeek |
None. |
| DayOfMonth |
The day of month value. |
integer |
None. |
| Interval |
The interval value. |
integer |
None. |
| IsSplit |
Indicates whether this item is split. |
boolean |
None. |
| AnniversaryDay |
The anniversary day value. |
integer |
None. |
| AnniversaryMonth |
The anniversary month value. |
integer |
None. |
| IsNewTenancy |
Indicates whether this item is new tenancy. |
boolean |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"Frequency": 1,
"StartDate": "2026-07-23T08:18:47.1857631Z",
"DaysOfWeek": [
1,
1
],
"DayOfMonth": 1,
"Interval": 2,
"IsSplit": true,
"AnniversaryDay": 4,
"AnniversaryMonth": 5,
"IsNewTenancy": true
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.