POST api/Properties/SavePropertySaleBid

Request Information

URI Parameters

None.

Body Parameters

SalePropertyBidModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

SalePropertyBidID

integer

None.

SalePropertyID

integer

None.

BidderUserProfileID

integer

None.

PropertyBidStatusID

integer

None.

SaleAmount

decimal number

None.

NoteMessage

string

None.

SalePropertyManagerID

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,
  "SalePropertyBidID": 1,
  "SalePropertyID": 1,
  "BidderUserProfileID": 2,
  "PropertyBidStatusID": 3,
  "SaleAmount": 4.0,
  "NoteMessage": "sample string 5",
  "SalePropertyManagerID": 1,
  "Manager_ReasonID": 1,
  "Notes": "sample string 6",
  "IsRebiding": true,
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 10,
  "UpdatedBy": 11,
  "LogId": 1,
  "Action": "sample string 12"
}

application/xml, text/xml

Sample:
<SalePropertyBidModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.SaleModule">
  <Action>sample string 12</Action>
  <AppNo>1</AppNo>
  <BidderUserProfileID>2</BidderUserProfileID>
  <CreatedBy>10</CreatedBy>
  <DBNo>1</DBNo>
  <IsActive>true</IsActive>
  <IsDeleted>true</IsDeleted>
  <IsRebiding>true</IsRebiding>
  <LogId>1</LogId>
  <Manager_ReasonID>1</Manager_ReasonID>
  <NoteMessage>sample string 5</NoteMessage>
  <Notes>sample string 6</Notes>
  <PropertyBidStatusID>3</PropertyBidStatusID>
  <SaleAmount>4</SaleAmount>
  <SalePropertyBidID>1</SalePropertyBidID>
  <SalePropertyID>1</SalePropertyID>
  <SalePropertyManagerID>1</SalePropertyManagerID>
  <UpdatedBy>11</UpdatedBy>
</SalePropertyBidModel>

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>