POST api/Properties/GetRentalIncomeListByAgreementID
Request Information
URI Parameters
None.
Body Parameters
GetRentalIncomeListByAgreementIDModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RentAgreementID | integer |
None. |
|
| LocationID | integer |
None. |
|
| UserID | integer |
None. |
|
| DateFrom | date |
None. |
|
| DateTo | date |
None. |
|
| IncomeTypesIds | Collection of integer |
None. |
|
| AmountMax | decimal number |
None. |
|
| AmountMin | decimal number |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"RentAgreementID": 1,
"LocationID": 2,
"UserID": 3,
"DateFrom": "2026-04-06T21:37:41.2385227-05:00",
"DateTo": "2026-04-06T21:37:41.2385227-05:00",
"IncomeTypesIds": [
1,
1
],
"AmountMax": 1.0,
"AmountMin": 1.0,
"PageNumber": 4,
"PageSize": 5
}
application/xml, text/xml
Sample:
<GetRentalIncomeListByAgreementIDModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.RentModule">
<AmountMax>1</AmountMax>
<AmountMin>1</AmountMin>
<DateFrom>2026-04-06T21:37:41.2385227-05:00</DateFrom>
<DateTo>2026-04-06T21:37:41.2385227-05:00</DateTo>
<IncomeTypesIds xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:int>1</d2p1:int>
<d2p1:int>1</d2p1:int>
</IncomeTypesIds>
<LocationID>2</LocationID>
<PageNumber>4</PageNumber>
<PageSize>5</PageSize>
<RentAgreementID>1</RentAgreementID>
<UserID>3</UserID>
</GetRentalIncomeListByAgreementIDModel>
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>