POST api/CompanyBorrower/v1/GetLoanApplicationStatus
Request Information
URI Parameters
None.
Body Parameters
GetLoanApplicationStatusRequestName | Description | Type | Additional information |
---|---|---|---|
loanApplicationId | globally unique identifier |
None. |
|
externalApplicationNumber | string |
None. |
|
OrganizationCode | string |
None. |
|
UserName | string |
None. |
|
Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "loanApplicationId": "9514de64-d050-47e9-8904-4300ddf76993", "externalApplicationNumber": "sample string 2", "OrganizationCode": "sample string 3", "UserName": "sample string 4", "Password": "sample string 5" }
application/xml, text/xml
Sample:
<GetLoanApplicationStatusRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers"> <OrganizationCode>sample string 3</OrganizationCode> <Password>sample string 5</Password> <UserName>sample string 4</UserName> <externalApplicationNumber>sample string 2</externalApplicationNumber> <loanApplicationId>9514de64-d050-47e9-8904-4300ddf76993</loanApplicationId> </GetLoanApplicationStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetLoanApplicationStatusReplyName | Description | Type | Additional information |
---|---|---|---|
Reply | CompanyLoanApplicationStatus |
None. |
|
Ok | boolean |
None. |
|
ErrorMessage | string |
None. |
|
ErrorCode | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Reply": { "ExternalApplicationNumber": "sample string 1", "BrandCode": "sample string 2", "ChannelCode": "sample string 3", "LoanApplicationId": "716d7ef7-9d98-4187-8c3d-5840fc62ef40", "IsSigned": true, "SignatureTime": "2025-06-27T12:57:25.2995151+00:00", "IsLoanApplicationVerified": true, "IsLoanApplicationProcessed": true, "ProcessedTime": "2025-06-27T12:57:25.2995151+00:00", "ExpirationDate": "2025-06-27T12:57:25.2995151+00:00", "IsWaitingForDisbursement": true, "DisbursementTime": "2025-06-27T12:57:25.2995151+00:00", "LoanAmount": 11.0, "InstallmentCount": 12, "InstallmentAmount": 13.0, "InterestRate": 14.0, "ActualYearlyInterestRate": 15.0, "OpeningFee": 16.0, "InstallmentFee": 17.0, "IsApproved": true, "RejectionReasonMessage": "sample string 19", "RejectionReasonCode": "sample string 20", "LoanApplicationNumber": "sample string 21" }, "Ok": true, "ErrorMessage": "sample string 2", "ErrorCode": "sample string 3", "Message": "sample string 4" }
application/xml, text/xml
Sample:
<GetLoanApplicationStatusReply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers"> <ErrorCode>sample string 3</ErrorCode> <ErrorMessage>sample string 2</ErrorMessage> <Message>sample string 4</Message> <Ok>true</Ok> <Reply> <ActualYearlyInterestRate>15</ActualYearlyInterestRate> <BrandCode>sample string 2</BrandCode> <ChannelCode>sample string 3</ChannelCode> <DisbursementTime>2025-06-27T12:57:25.2995151+00:00</DisbursementTime> <ExpirationDate>2025-06-27T12:57:25.2995151+00:00</ExpirationDate> <ExternalApplicationNumber>sample string 1</ExternalApplicationNumber> <InstallmentAmount>13</InstallmentAmount> <InstallmentCount>12</InstallmentCount> <InstallmentFee>17</InstallmentFee> <InterestRate>14</InterestRate> <IsApproved>true</IsApproved> <IsLoanApplicationProcessed>true</IsLoanApplicationProcessed> <IsLoanApplicationVerified>true</IsLoanApplicationVerified> <IsSigned>true</IsSigned> <IsWaitingForDisbursement>true</IsWaitingForDisbursement> <LoanAmount>11</LoanAmount> <LoanApplicationId>716d7ef7-9d98-4187-8c3d-5840fc62ef40</LoanApplicationId> <LoanApplicationNumber>sample string 21</LoanApplicationNumber> <OpeningFee>16</OpeningFee> <ProcessedTime>2025-06-27T12:57:25.2995151+00:00</ProcessedTime> <RejectionReasonCode>sample string 20</RejectionReasonCode> <RejectionReasonMessage>sample string 19</RejectionReasonMessage> <SignatureTime>2025-06-27T12:57:25.2995151+00:00</SignatureTime> </Reply> </GetLoanApplicationStatusReply>