POST api/Properties/SaveRentalProperty

Request Information

URI Parameters

None.

Body Parameters

PR_RentalProperty
NameDescriptionTypeAdditional 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": "813dce70-1a74-4ad3-9af6-65d0f967c9c1",
  "RentalID": 1,
  "TenantUserID": 1,
  "OwnerUserID": 1,
  "AgentUserID": 1,
  "Location_ID": 1,
  "IsDecline": true,
  "Accepted": true,
  "ContractDownloaded": true,
  "IsActive": true,
  "IsDeleted": true,
  "CreatedDate": "2026-04-06T21:36:06.3632537-05:00",
  "CreatedBy": "d57096b1-6b9e-47d1-8d8f-8c2ed3f76885",
  "UpdatedDate": "2026-04-06T21:36:06.3636744-05:00",
  "UpdatedBy": "3740bacf-8558-4ad2-a9fe-b2a297d32741",
  "ApproveDate": "2026-04-06T21:36:06.3636744-05:00",
  "ApprovedBy": "db467939-c4b3-4b3c-957f-c3add6eecff6",
  "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-04-06T21:36:06.3636744-05:00</ApproveDate>
  <ApprovedBy>db467939-c4b3-4b3c-957f-c3add6eecff6</ApprovedBy>
  <ContractDownloaded>true</ContractDownloaded>
  <CreatedBy>d57096b1-6b9e-47d1-8d8f-8c2ed3f76885</CreatedBy>
  <CreatedDate>2026-04-06T21:36:06.3632537-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>813dce70-1a74-4ad3-9af6-65d0f967c9c1</ROWID>
  <RentalID>1</RentalID>
  <TenantUserID>1</TenantUserID>
  <UpdatedBy>3740bacf-8558-4ad2-a9fe-b2a297d32741</UpdatedBy>
  <UpdatedDate>2026-04-06T21:36:06.3636744-05:00</UpdatedDate>
</PR_RentalProperty>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional 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>