POST api/v1/survey/record

Post survey record to survey database

Request Information

URI Parameters

None.

Body Parameters

SurveyRecord
NameDescriptionTypeAdditional information
Id

integer

None.

LoanId

string

None.

DepartmentId

byte

None.

EmailRecipient

string

None.

Issues

boolean

None.

CompletedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "LoanId": "sample string 2",
  "DepartmentId": 64,
  "EmailRecipient": "sample string 4",
  "Issues": true,
  "CompletedDate": "2025-12-06T04:37:03.3984054+00:00"
}

application/xml, text/xml

Sample:
<SurveyRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrincetonMortgage.CommonModels">
  <CompletedDate>2025-12-06T04:37:03.3984054+00:00</CompletedDate>
  <DepartmentId>64</DepartmentId>
  <EmailRecipient>sample string 4</EmailRecipient>
  <Id>1</Id>
  <Issues>true</Issues>
  <LoanId>sample string 2</LoanId>
</SurveyRecord>

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.