POST api/Properties/GetRentalAgreementsByLocationID_RentalMangerPanel
Request Information
URI Parameters
None.
Body Parameters
RentalAgreementsSearch_RentalMangerPanel_Model| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber | integer |
Range: inclusive between 1 and 2147483647 |
|
| PageSize | integer |
Range: inclusive between 1 and 100 |
|
| TotalCount | integer |
None. |
|
| LocationID | integer |
Range: inclusive between 0 and 2147483647 |
|
| UserID | integer |
Range: inclusive between 0 and 2147483647 |
|
| search_AgreementCode | string |
None. |
|
| search_Status | string |
None. |
|
| search_TenantName | string |
None. |
|
| search_StartDate | date |
None. |
|
| search_EndDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageNumber": 1,
"PageSize": 2,
"TotalCount": 3,
"LocationID": 4,
"UserID": 5,
"search_AgreementCode": "sample string 6",
"search_Status": "sample string 7",
"search_TenantName": "sample string 8",
"search_StartDate": "2026-04-06T21:37:58.230181-05:00",
"search_EndDate": "2026-04-06T21:37:58.230181-05:00"
}
application/xml, text/xml
Sample:
<RentalAgreementsSearch_RentalMangerPanel_Model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.RentModule"> <LocationID>4</LocationID> <PageNumber>1</PageNumber> <PageSize>2</PageSize> <TotalCount>3</TotalCount> <UserID>5</UserID> <search_AgreementCode>sample string 6</search_AgreementCode> <search_EndDate>2026-04-06T21:37:58.230181-05:00</search_EndDate> <search_StartDate>2026-04-06T21:37:58.230181-05:00</search_StartDate> <search_Status>sample string 7</search_Status> <search_TenantName>sample string 8</search_TenantName> </RentalAgreementsSearch_RentalMangerPanel_Model>
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>