POST api/Properties/SavePropertyRentalBid

Request Information

URI Parameters

None.

Body Parameters

RentPropertyBidModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

RentPropertyBidID

integer

None.

RentPropertyID

integer

None.

BidderUserProfileID

integer

None.

PropertyBidStatusID

integer

None.

RentPerMonth

decimal number

None.

Security

decimal number

None.

MoveInDate

date

None.

RentInAdvance

boolean

None.

AdvanceRentPaymentDate

integer

None.

LateRentPenaltyPercentage

decimal number

None.

AccommodationOptionID

integer

None.

TenatMessage

string

None.

RentPropertyManagerID

integer

None.

Manager_ReasonID

integer

None.

Notes

string

None.

IsRebiding

boolean

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

LogId

integer

None.

Action

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DBNo": 1,
  "AppNo": 1,
  "RentPropertyBidID": 1,
  "RentPropertyID": 1,
  "BidderUserProfileID": 2,
  "PropertyBidStatusID": 3,
  "RentPerMonth": 4.0,
  "Security": 5.0,
  "MoveInDate": "2026-04-06T21:36:33.3287407-05:00",
  "RentInAdvance": true,
  "AdvanceRentPaymentDate": 1,
  "LateRentPenaltyPercentage": 1.0,
  "AccommodationOptionID": 8,
  "TenatMessage": "sample string 9",
  "RentPropertyManagerID": 1,
  "Manager_ReasonID": 1,
  "Notes": "sample string 10",
  "IsRebiding": true,
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 14,
  "UpdatedBy": 15,
  "LogId": 1,
  "Action": "sample string 16"
}

application/xml, text/xml

Sample:
<RentPropertyBidModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <AccommodationOptionID>8</AccommodationOptionID>
  <Action>sample string 16</Action>
  <AdvanceRentPaymentDate>1</AdvanceRentPaymentDate>
  <AppNo>1</AppNo>
  <BidderUserProfileID>2</BidderUserProfileID>
  <CreatedBy>14</CreatedBy>
  <DBNo>1</DBNo>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <IsRebiding>true</IsRebiding>
  <LateRentPenaltyPercentage>1</LateRentPenaltyPercentage>
  <LogId>1</LogId>
  <Manager_ReasonID>1</Manager_ReasonID>
  <MoveInDate>2026-04-06T21:36:33.3287407-05:00</MoveInDate>
  <Notes>sample string 10</Notes>
  <PropertyBidStatusID>3</PropertyBidStatusID>
  <RentInAdvance>true</RentInAdvance>
  <RentPerMonth>4</RentPerMonth>
  <RentPropertyBidID>1</RentPropertyBidID>
  <RentPropertyID>1</RentPropertyID>
  <RentPropertyManagerID>1</RentPropertyManagerID>
  <Security>5</Security>
  <TenatMessage>sample string 9</TenatMessage>
  <UpdatedBy>15</UpdatedBy>
</RentPropertyBidModel>

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>