POST api/product/getBestDeals

Request Information

URI Parameters

None.

Body Parameters

GetDealsRequestDTO
NameDescriptionTypeAdditional information
LoanAmount

decimal number

None.

HomeValue

decimal number

None.

MortgageOutstanding

decimal number

None.

CurrentPayments

string

None.

Term

integer

None.

Top

integer

None.

BusinessType

string

None.

MortgageType

string

None.

BuyerType

string

None.

BerCertificate

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LoanAmount": 1.1,
  "HomeValue": 2.1,
  "MortgageOutstanding": 3.1,
  "CurrentPayments": "sample string 4",
  "Term": 5,
  "Top": 6,
  "BusinessType": "sample string 7",
  "MortgageType": "sample string 8",
  "BuyerType": "sample string 9",
  "BerCertificate": "sample string 10"
}

application/xml, text/xml

Sample:
<GetDealsRequestDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MoneySherpaRepository.DataTransferObjects">
  <BerCertificate>sample string 10</BerCertificate>
  <BusinessType>sample string 7</BusinessType>
  <BuyerType>sample string 9</BuyerType>
  <CurrentPayments>sample string 4</CurrentPayments>
  <HomeValue>2.1</HomeValue>
  <LoanAmount>1.1</LoanAmount>
  <MortgageOutstanding>3.1</MortgageOutstanding>
  <MortgageType>sample string 8</MortgageType>
  <Term>5</Term>
  <Top>6</Top>
</GetDealsRequestDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.