POST api/Properties/SaveRentalProperty
Request Information
URI Parameters
None.
Body Parameters
PR_RentalProperty| Name | Description | Type | Additional information |
|---|---|---|---|
| ROWID | globally unique identifier |
None. |
|
| RentalID | integer |
None. |
|
| TenantUserID | integer |
None. |
|
| OwnerUserID | integer |
None. |
|
| AgentUserID | integer |
None. |
|
| Location_ID | integer |
None. |
|
| IsDecline | boolean |
None. |
|
| Accepted | boolean |
None. |
|
| ContractDownloaded | boolean |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedBy | globally unique identifier |
None. |
|
| UpdatedDate | date |
None. |
|
| UpdatedBy | globally unique identifier |
None. |
|
| ApproveDate | date |
None. |
|
| ApprovedBy | globally unique identifier |
None. |
|
| CurrentStatus | integer |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ROWID": "5b4b7a52-677f-4125-8782-0c89665a7492",
"RentalID": 1,
"TenantUserID": 1,
"OwnerUserID": 1,
"AgentUserID": 1,
"Location_ID": 1,
"IsDecline": true,
"Accepted": true,
"ContractDownloaded": true,
"IsActive": true,
"IsDeleted": true,
"CreatedDate": "2026-09-20T18:21:09.7676167-05:00",
"CreatedBy": "6bc11782-78f7-4a9b-a9ac-29031984d138",
"UpdatedDate": "2026-09-20T18:21:09.7691855-05:00",
"UpdatedBy": "817201b0-e474-4aa3-8e6f-bcf46c288181",
"ApproveDate": "2026-09-20T18:21:09.7691855-05:00",
"ApprovedBy": "d897985a-f574-49c0-aa65-5e4c1dec8b86",
"CurrentStatus": 1,
"Note": "sample string 2"
}
application/xml, text/xml
Sample:
<PR_RentalProperty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Entities"> <Accepted>true</Accepted> <AgentUserID>1</AgentUserID> <ApproveDate>2026-09-20T18:21:09.7691855-05:00</ApproveDate> <ApprovedBy>d897985a-f574-49c0-aa65-5e4c1dec8b86</ApprovedBy> <ContractDownloaded>true</ContractDownloaded> <CreatedBy>6bc11782-78f7-4a9b-a9ac-29031984d138</CreatedBy> <CreatedDate>2026-09-20T18:21:09.7676167-05:00</CreatedDate> <CurrentStatus>1</CurrentStatus> <IsActive>true</IsActive> <IsDecline>true</IsDecline> <IsDeleted>true</IsDeleted> <Location_ID>1</Location_ID> <Note>sample string 2</Note> <OwnerUserID>1</OwnerUserID> <ROWID>5b4b7a52-677f-4125-8782-0c89665a7492</ROWID> <RentalID>1</RentalID> <TenantUserID>1</TenantUserID> <UpdatedBy>817201b0-e474-4aa3-8e6f-bcf46c288181</UpdatedBy> <UpdatedDate>2026-09-20T18:21:09.7691855-05:00</UpdatedDate> </PR_RentalProperty>
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>