POST api/v1/survey/loan/record

Post survey loan record to survey database

Request Information

URI Parameters

None.

Body Parameters

SurveyLoanRecord
NameDescriptionTypeAdditional information
Id

integer

None.

LoanId

string

None.

LoanNumber

string

None.

Retail

boolean

None.

FundingDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "LoanId": "sample string 2",
  "LoanNumber": "sample string 3",
  "Retail": true,
  "FundingDate": "2025-12-06T04:37:02.8947767+00:00"
}

application/xml, text/xml

Sample:
<SurveyLoanRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrincetonMortgage.CommonModels">
  <FundingDate>2025-12-06T04:37:02.8947767+00:00</FundingDate>
  <Id>1</Id>
  <LoanId>sample string 2</LoanId>
  <LoanNumber>sample string 3</LoanNumber>
  <Retail>true</Retail>
</SurveyLoanRecord>

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.