POST api/Properties/PropertySaleTransaction

Request Information

URI Parameters

None.

Body Parameters

PropertySaleTransactionModel
NameDescriptionTypeAdditional information
DBNo

integer

None.

AppNo

integer

None.

TransactionID

integer

None.

LocationID

integer

None.

SalePropertyBidID

integer

None.

SalePropertyID

integer

None.

PaymentDeadlineDays

integer

None.

IsBuyerResponse

boolean

None.

BuyerResponseMessage

string

None.

BuyerResponseDocumentURL

string

None.

IsSellerResponse

boolean

None.

SellerResponseMessage

string

None.

SellerResponseDocumentURL

string

None.

IsActive

boolean

None.

IsDeleted

boolean

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

IsResultReturn

boolean

None.

Action

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DBNo": 1,
  "AppNo": 1,
  "TransactionID": 1,
  "LocationID": 2,
  "SalePropertyBidID": 3,
  "SalePropertyID": 4,
  "PaymentDeadlineDays": 5,
  "IsBuyerResponse": true,
  "BuyerResponseMessage": "sample string 6",
  "BuyerResponseDocumentURL": "sample string 7",
  "IsSellerResponse": true,
  "SellerResponseMessage": "sample string 8",
  "SellerResponseDocumentURL": "sample string 9",
  "IsActive": true,
  "IsDeleted": true,
  "CreatedBy": 12,
  "UpdatedBy": 13,
  "IsResultReturn": true,
  "Action": "sample string 15"
}

application/xml, text/xml

Sample:
<PropertySaleTransactionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model.PropertyModule.SaleModule">
  <Action>sample string 15</Action>
  <AppNo>1</AppNo>
  <BuyerResponseDocumentURL>sample string 7</BuyerResponseDocumentURL>
  <BuyerResponseMessage>sample string 6</BuyerResponseMessage>
  <CreatedBy>12</CreatedBy>
  <DBNo>1</DBNo>
  <IsActive>true</IsActive>
  <IsBuyerResponse>true</IsBuyerResponse>
  <IsDeleted>true</IsDeleted>
  <IsResultReturn>true</IsResultReturn>
  <IsSellerResponse>true</IsSellerResponse>
  <LocationID>2</LocationID>
  <PaymentDeadlineDays>5</PaymentDeadlineDays>
  <SalePropertyBidID>3</SalePropertyBidID>
  <SalePropertyID>4</SalePropertyID>
  <SellerResponseDocumentURL>sample string 9</SellerResponseDocumentURL>
  <SellerResponseMessage>sample string 8</SellerResponseMessage>
  <TransactionID>1</TransactionID>
  <UpdatedBy>13</UpdatedBy>
</PropertySaleTransactionModel>

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>