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": "bc272a2b-89be-45d4-ba41-c3ef37896678", "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>bc272a2b-89be-45d4-ba41-c3ef37896678</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": "2ba791bb-2b13-488c-be17-dd270b93ed93", "IsSigned": true, "SignatureTime": "2025-05-02T12:34:05.4063972+00:00", "IsLoanApplicationVerified": true, "IsLoanApplicationProcessed": true, "ProcessedTime": "2025-05-02T12:34:05.4063972+00:00", "ExpirationDate": "2025-05-02T12:34:05.4063972+00:00", "IsWaitingForDisbursement": true, "DisbursementTime": "2025-05-02T12:34:05.4063972+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-05-02T12:34:05.4063972+00:00</DisbursementTime> <ExpirationDate>2025-05-02T12:34:05.4063972+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>2ba791bb-2b13-488c-be17-dd270b93ed93</LoanApplicationId> <LoanApplicationNumber>sample string 21</LoanApplicationNumber> <OpeningFee>16</OpeningFee> <ProcessedTime>2025-05-02T12:34:05.4063972+00:00</ProcessedTime> <RejectionReasonCode>sample string 20</RejectionReasonCode> <RejectionReasonMessage>sample string 19</RejectionReasonMessage> <SignatureTime>2025-05-02T12:34:05.4063972+00:00</SignatureTime> </Reply> </GetLoanApplicationStatusReply>