POST api/ConsumerBorrower/v1/ConfirmConsumerLoanApplication
Use this method to indicate that end customer has chosen Fellow Finance offer. This will trigger that Fellow Finance will provide end customer contract signing link.
Request Information
URI Parameters
None.
Body Parameters
ConfirmConsumerLoanApplicationRequestName | Description | Type | Additional 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. |
OrganizationCode | string |
None. |
|
UserName | string |
None. |
|
Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "applicationId": "4322786a-f76c-4431-92c1-7de3521b5a2a", "channelCode": "sample string 1", "brandCode": "sample string 2", "externalApplicationNumber": "sample string 3", "OrganizationCode": "sample string 4", "UserName": "sample string 5", "Password": "sample string 6" }
application/xml, text/xml
Sample:
<ConfirmConsumerLoanApplicationRequest 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 4</OrganizationCode> <Password xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 6</Password> <UserName xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 5</UserName> <applicationId>4322786a-f76c-4431-92c1-7de3521b5a2a</applicationId> <brandCode>sample string 2</brandCode> <channelCode>sample string 1</channelCode> <externalApplicationNumber>sample string 3</externalApplicationNumber> </ConfirmConsumerLoanApplicationRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ConfirmConsumerLoanApplicationReplyName | Description | Type | Additional 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:
<ConfirmConsumerLoanApplicationReply 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> </ConfirmConsumerLoanApplicationReply>