POST api/Properties/SaveORUpdateRentIncome
Request Information
URI Parameters
None.
Body Parameters
RentalIncomeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DBNo | integer |
None. |
|
| AppNo | integer |
None. |
|
| Rent_IncomeID | integer |
None. |
|
| RentAgreementID | integer |
None. |
|
| IncomeTypeID | integer |
None. |
|
| IncomeDate | date |
None. |
|
| IncomeAmount | decimal number |
None. |
|
| Description | string |
None. |
|
| DocumentUrl | string |
None. |
|
| UserProfileID | integer |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| Notes | string |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
|
| Action | string |
None. |
|
| FetchRecord | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"DBNo": 1,
"AppNo": 1,
"Rent_IncomeID": 1,
"RentAgreementID": 1,
"IncomeTypeID": 2,
"IncomeDate": "2026-04-06T21:39:30.9067354-05:00",
"IncomeAmount": 4.0,
"Description": "sample string 5",
"DocumentUrl": "sample string 6",
"UserProfileID": 7,
"IsActive": true,
"IsDeleted": true,
"Notes": "sample string 10",
"CreatedBy": 11,
"UpdatedBy": 12,
"Action": "sample string 13",
"FetchRecord": true
}
application/xml, text/xml
Sample:
<RentalIncomeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.RentModule"> <Action>sample string 13</Action> <AppNo>1</AppNo> <CreatedBy>11</CreatedBy> <DBNo>1</DBNo> <Description>sample string 5</Description> <DocumentUrl>sample string 6</DocumentUrl> <FetchRecord>true</FetchRecord> <IncomeAmount>4</IncomeAmount> <IncomeDate>2026-04-06T21:39:30.9067354-05:00</IncomeDate> <IncomeTypeID>2</IncomeTypeID> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <Notes>sample string 10</Notes> <RentAgreementID>1</RentAgreementID> <Rent_IncomeID>1</Rent_IncomeID> <UpdatedBy>12</UpdatedBy> <UserProfileID>7</UserProfileID> </RentalIncomeModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional 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>