POST api/Properties/Handle_RentalLease_Agreement
Request Information
URI Parameters
None.
Body Parameters
Property_RentalLeaseAgreement_TenantHandle| Name | Description | Type | Additional information |
|---|---|---|---|
| DBNo | integer |
None. |
|
| AppNo | integer |
None. |
|
| RentAgreementID | integer |
Required Range: inclusive between 1 and 2147483647 |
|
| ActionType | string |
Required |
|
| UserProfileID | integer |
Required Range: inclusive between 1 and 2147483647 |
|
| LocationID | integer |
Required Range: inclusive between 1 and 2147483647 |
|
| ManagerID | integer |
None. |
|
| ReasonText | string |
Required String length: inclusive between 20 and 2500 |
Request Formats
application/json, text/json
Sample:
{
"DBNo": 1,
"AppNo": 1,
"RentAgreementID": 1,
"ActionType": "sample string 2",
"UserProfileID": 3,
"LocationID": 4,
"ManagerID": 1,
"ReasonText": "sample string 5"
}
application/xml, text/xml
Sample:
<Property_RentalLeaseAgreement_TenantHandle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.RentModule"> <ActionType>sample string 2</ActionType> <AppNo>1</AppNo> <DBNo>1</DBNo> <LocationID>4</LocationID> <ManagerID>1</ManagerID> <ReasonText>sample string 5</ReasonText> <RentAgreementID>1</RentAgreementID> <UserProfileID>3</UserProfileID> </Property_RentalLeaseAgreement_TenantHandle>
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>