POST api/Properties/GetAllPropertyForInvoiceByUser
Request Information
URI Parameters
None.
Body Parameters
RentPropertyForSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| Type | string |
None. |
|
| LocationID | integer |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| InvoiceNo | string |
None. |
|
| MaintenanceTypeID | integer |
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",
"LocationID": 3,
"PageNumber": 1,
"PageSize": 1,
"InvoiceNo": "sample string 4",
"MaintenanceTypeID": 1,
"FromDate": "2026-04-06T21:34:06.9420226-05:00",
"ToDate": "2026-04-06T21:34:06.9420226-05:00",
"AmountFrom": 1.0,
"AmountTo": 1.0
}
application/xml, text/xml
Sample:
<RentPropertyForSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel"> <AmountFrom>1</AmountFrom> <AmountTo>1</AmountTo> <FromDate>2026-04-06T21:34:06.9420226-05:00</FromDate> <InvoiceNo>sample string 4</InvoiceNo> <LocationID>3</LocationID> <MaintenanceTypeID>1</MaintenanceTypeID> <PageNumber>1</PageNumber> <PageSize>1</PageSize> <ToDate>2026-04-06T21:34:06.9420226-05:00</ToDate> <Type>sample string 2</Type> <UserID>1</UserID> </RentPropertyForSearch>
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>