POST api/Properties/GetAllInvoices
Request Information
URI Parameters
None.
Body Parameters
SearchInvoices| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationID | integer |
None. |
|
| RentAgreementID | integer |
None. |
|
| UserID | integer |
None. |
|
| Type | string |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| InvoiceCode | string |
None. |
|
| InvoiceAmountMin | decimal number |
None. |
|
| InvoiceAmountMax | decimal number |
None. |
|
| MonthsIDs | Collection of integer |
None. |
|
| InvoicesByUserProfileID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationID": 1,
"RentAgreementID": 2,
"UserID": 3,
"Type": "sample string 4",
"PageNumber": 1,
"PageSize": 1,
"FromDate": "2026-04-06T21:35:31.5293253-05:00",
"ToDate": "2026-04-06T21:35:31.5293253-05:00",
"InvoiceCode": "sample string 5",
"InvoiceAmountMin": 1.0,
"InvoiceAmountMax": 1.0,
"MonthsIDs": [
1,
1
],
"InvoicesByUserProfileID": 1
}
application/xml, text/xml
Sample:
<SearchInvoices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
<FromDate>2026-04-06T21:35:31.5293253-05:00</FromDate>
<InvoiceAmountMax>1</InvoiceAmountMax>
<InvoiceAmountMin>1</InvoiceAmountMin>
<InvoiceCode>sample string 5</InvoiceCode>
<InvoicesByUserProfileID>1</InvoicesByUserProfileID>
<LocationID>1</LocationID>
<MonthsIDs xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:int>1</d2p1:int>
<d2p1:int>1</d2p1:int>
</MonthsIDs>
<PageNumber>1</PageNumber>
<PageSize>1</PageSize>
<RentAgreementID>2</RentAgreementID>
<ToDate>2026-04-06T21:35:31.5293253-05:00</ToDate>
<Type>sample string 4</Type>
<UserID>3</UserID>
</SearchInvoices>
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>