POST api/ConsumerBorrower/v1/AdjustConsumerLoanApplication
Use this method to modify existing loan application. Method will do new credit decision.
Request Information
URI Parameters
None.
Body Parameters
AdjustConsumerLoanApplicationRequest| Name | 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. | 
| loanAmount | New loan amount | decimal number | None. | 
| installmentCount | Loan duration in months | integer | None. | 
| OrganizationCode | string | None. | |
| UserName | string | None. | |
| Password | string | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "applicationId": "b7b8c9b2-6145-4208-b28e-4c2957c81fb3",
  "channelCode": "sample string 1",
  "brandCode": "sample string 2",
  "externalApplicationNumber": "sample string 3",
  "loanAmount": 4.0,
  "installmentCount": 5,
  "OrganizationCode": "sample string 6",
  "UserName": "sample string 7",
  "Password": "sample string 8"
}
        application/xml, text/xml
            Sample:
        <AdjustConsumerLoanApplicationRequest 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 6</OrganizationCode> <Password xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 8</Password> <UserName xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 7</UserName> <applicationId>b7b8c9b2-6145-4208-b28e-4c2957c81fb3</applicationId> <brandCode>sample string 2</brandCode> <channelCode>sample string 1</channelCode> <externalApplicationNumber>sample string 3</externalApplicationNumber> <installmentCount>5</installmentCount> <loanAmount>4</loanAmount> </AdjustConsumerLoanApplicationRequest>
application/x-www-form-urlencoded
            Sample:
    
        
Response Information
Resource Description
AdjustConsumerLoanApplicationReply| Name | Description | Type | Additional information | 
|---|---|---|---|
| Reply | LoanApplicationResult | None. | |
| Ok | boolean | None. | |
| ErrorMessage | string | None. | |
| ErrorCode | string | None. | |
| Message | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Reply": {
    "MaxLoanAmountWithoutIncomeVerification": 1.0,
    "LoanAmount": 2.0,
    "InstallmentCount": 3,
    "InstallmentAmount": 4.0,
    "InterestRate": 5.0,
    "ActualYearlyInterestRate": 6.0,
    "OpeningFee": 7.0,
    "InstallmentFee": 8.0,
    "IsValid": true,
    "ValidationMessage": "sample string 10",
    "IsApproved": true,
    "RejectionReasonMessage": "sample string 12",
    "RejectionReasonCode": "sample string 13",
    "ApplicationId": "sample string 14",
    "ExternalApplicationNumber": "sample string 15",
    "IsTaxDocumentRequired": true,
    "IsIncomeDocumentRequired": true,
    "CustomerNumber": "sample string 18",
    "FirstDueDate": "2025-10-22T01:53:41.0862151+00:00"
  },
  "Ok": true,
  "ErrorMessage": "sample string 2",
  "ErrorCode": "sample string 3",
  "Message": "sample string 4"
}
        application/xml, text/xml
            Sample:
<AdjustConsumerLoanApplicationReply 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 3</ErrorCode>
  <ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 2</ErrorMessage>
  <Message xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 4</Message>
  <Ok xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">true</Ok>
  <Reply>
    <ActualYearlyInterestRate>6</ActualYearlyInterestRate>
    <ApplicationId>sample string 14</ApplicationId>
    <CustomerNumber>sample string 18</CustomerNumber>
    <ExternalApplicationNumber>sample string 15</ExternalApplicationNumber>
    <InstallmentAmount>4</InstallmentAmount>
    <InstallmentCount>3</InstallmentCount>
    <InstallmentFee>8</InstallmentFee>
    <InterestRate>5</InterestRate>
    <IsApproved>true</IsApproved>
    <IsIncomeDocumentRequired>true</IsIncomeDocumentRequired>
    <IsTaxDocumentRequired>true</IsTaxDocumentRequired>
    <IsValid>true</IsValid>
    <LoanAmount>2</LoanAmount>
    <MaxLoanAmountWithoutIncomeVerification>1</MaxLoanAmountWithoutIncomeVerification>
    <OpeningFee>7</OpeningFee>
    <RejectionReasonCode>sample string 13</RejectionReasonCode>
    <RejectionReasonMessage>sample string 12</RejectionReasonMessage>
    <ValidationMessage>sample string 10</ValidationMessage>
  </Reply>
</AdjustConsumerLoanApplicationReply>