POST api/Properties/GetRentalExpenseInvoices
Request Information
URI Parameters
None.
Body Parameters
SearchRentalExpenseInvoicesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| Type | string |
None. |
|
| RentAgreementID | integer |
None. |
|
| LocationID | integer |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| InvoiceNo | string |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| AmountFrom | decimal number |
None. |
|
| AmountTo | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"Type": "sample string 2",
"RentAgreementID": 3,
"LocationID": 4,
"PageNumber": 1,
"PageSize": 1,
"InvoiceNo": "sample string 5",
"FromDate": "2026-04-06T21:37:51.4555488-05:00",
"ToDate": "2026-04-06T21:37:51.4555488-05:00",
"AmountFrom": 1.0,
"AmountTo": 1.0
}
application/xml, text/xml
Sample:
<SearchRentalExpenseInvoicesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.RentModule"> <AmountFrom>1</AmountFrom> <AmountTo>1</AmountTo> <FromDate>2026-04-06T21:37:51.4555488-05:00</FromDate> <InvoiceNo>sample string 5</InvoiceNo> <LocationID>4</LocationID> <PageNumber>1</PageNumber> <PageSize>1</PageSize> <RentAgreementID>3</RentAgreementID> <ToDate>2026-04-06T21:37:51.4555488-05:00</ToDate> <Type>sample string 2</Type> <UserID>1</UserID> </SearchRentalExpenseInvoicesModel>
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>