POST api/ConsumerBorrower/v1/InsertLoanApplicationAdditionalInformationMessage

Method adds additional message for loan application for Fellow Finance customer service to process.

Request Information

URI Parameters

None.

Body Parameters

InsertLoanApplicationAdditionalInformationMessageRequest
NameDescriptionTypeAdditional information
applicationId

Unique identifier of loan application returned by InsertConsumerLoanApplication. Use this or combination channelCode, brandCode, externalApplicationNumber.

globally unique identifier

None.

channelCode

Code identifying the sender organization. Code to use provided by FF.

string

None.

brandCode

Brand code of loan: FF, FP, LA, FS ...

string

None.

externalApplicationNumber

Sender's unique identifier for loan application given as parameter of InsertConsumerLoanApplication

string

None.

message

Additional informative message for loan application

string

None.

OrganizationCode

string

None.

UserName

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "applicationId": "6b754f1e-f940-4600-87a9-b4681415c945",
  "channelCode": "sample string 1",
  "brandCode": "sample string 2",
  "externalApplicationNumber": "sample string 3",
  "message": "sample string 4",
  "OrganizationCode": "sample string 5",
  "UserName": "sample string 6",
  "Password": "sample string 7"
}

application/xml, text/xml

Sample:
<InsertLoanApplicationAdditionalInformationMessageRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers.ConsumerBorrower">
  <OrganizationCode xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 5</OrganizationCode>
  <Password xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 7</Password>
  <UserName xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 6</UserName>
  <applicationId>6b754f1e-f940-4600-87a9-b4681415c945</applicationId>
  <brandCode>sample string 2</brandCode>
  <channelCode>sample string 1</channelCode>
  <externalApplicationNumber>sample string 3</externalApplicationNumber>
  <message>sample string 4</message>
</InsertLoanApplicationAdditionalInformationMessageRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'InsertLoanApplicationAdditionalInformationMessageRequest'.

Response Information

Resource Description

InsertLoanApplicationAdditionalInformationMessageReply
NameDescriptionTypeAdditional information
Reply

string

None.

Ok

boolean

None.

ErrorMessage

string

None.

ErrorCode

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Reply": "sample string 1",
  "Ok": true,
  "ErrorMessage": "sample string 3",
  "ErrorCode": "sample string 4",
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<InsertLoanApplicationAdditionalInformationMessageReply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers.ConsumerBorrower">
  <ErrorCode xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 4</ErrorCode>
  <ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 3</ErrorMessage>
  <Message xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 5</Message>
  <Ok xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">true</Ok>
  <Reply>sample string 1</Reply>
</InsertLoanApplicationAdditionalInformationMessageReply>