POST api/lookUp/proposalstatusupdate

Gets the proposal status per contact.

Request Information

URI Parameters

None.

Body Parameters

integer

Request Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'System.Int32'.

Response Information

Resource Description

Collection of ERP.Domain.Common.Funder.Funder
NameDescriptionTypeAdditional information
LenderId

integer

None.

LenderName

string

None.

FunderReference

string

None.

Status

string

None.

loanOffer

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "lenderId": 1,
    "lenderName": "sample string 2",
    "funderReference": "sample string 3",
    "status": "sample string 4",
    "loanOffer": 5.0
  },
  {
    "lenderId": 1,
    "lenderName": "sample string 2",
    "funderReference": "sample string 3",
    "status": "sample string 4",
    "loanOffer": 5.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfFunder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP.Domain.Common.Funder">
  <Funder>
    <FunderReference>sample string 3</FunderReference>
    <LenderId>1</LenderId>
    <LenderName>sample string 2</LenderName>
    <Status>sample string 4</Status>
    <loanOffer>5</loanOffer>
  </Funder>
  <Funder>
    <FunderReference>sample string 3</FunderReference>
    <LenderId>1</LenderId>
    <LenderName>sample string 2</LenderName>
    <Status>sample string 4</Status>
    <loanOffer>5</loanOffer>
  </Funder>
</ArrayOfFunder>