POST api/Properties/GetRentPropertyAgreementListByLocationID
Request Information
URI Parameters
None.
Body Parameters
GetRentPropertyAgreementListByLocationIDModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationID | integer |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| UserID | integer |
None. |
|
| UserProfileID | integer |
None. |
|
| IsSingleRecordFetch | boolean |
None. |
|
| RentAgreementID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"LocationID": 1,
"PageNumber": 2,
"PageSize": 3,
"UserID": 1,
"UserProfileID": 1,
"IsSingleRecordFetch": true,
"RentAgreementID": 1
}
application/xml, text/xml
Sample:
<GetRentPropertyAgreementListByLocationIDModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel.PropertieViews"> <IsSingleRecordFetch>true</IsSingleRecordFetch> <LocationID>1</LocationID> <PageNumber>2</PageNumber> <PageSize>3</PageSize> <RentAgreementID>1</RentAgreementID> <UserID>1</UserID> <UserProfileID>1</UserProfileID> </GetRentPropertyAgreementListByLocationIDModel>
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>