POST api/CompanyBorrower/v1/GetLoanApplicationStatus
Request Information
URI Parameters
None.
Body Parameters
GetLoanApplicationStatusRequest| Name | 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": "a3861b6a-7342-498c-95eb-f8d4528d28e7",
"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>a3861b6a-7342-498c-95eb-f8d4528d28e7</loanApplicationId> </GetLoanApplicationStatusRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetLoanApplicationStatusReply| Name | 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": "211b203f-8a40-4159-aa1b-e2fee428817b",
"IsSigned": true,
"SignatureTime": "2025-11-03T12:41:45.9575546+00:00",
"IsLoanApplicationVerified": true,
"IsLoanApplicationProcessed": true,
"ProcessedTime": "2025-11-03T12:41:45.9575546+00:00",
"ExpirationDate": "2025-11-03T12:41:45.9575546+00:00",
"IsWaitingForDisbursement": true,
"DisbursementTime": "2025-11-03T12:41:45.9575546+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-11-03T12:41:45.9575546+00:00</DisbursementTime>
<ExpirationDate>2025-11-03T12:41:45.9575546+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>211b203f-8a40-4159-aa1b-e2fee428817b</LoanApplicationId>
<LoanApplicationNumber>sample string 21</LoanApplicationNumber>
<OpeningFee>16</OpeningFee>
<ProcessedTime>2025-11-03T12:41:45.9575546+00:00</ProcessedTime>
<RejectionReasonCode>sample string 20</RejectionReasonCode>
<RejectionReasonMessage>sample string 19</RejectionReasonMessage>
<SignatureTime>2025-11-03T12:41:45.9575546+00:00</SignatureTime>
</Reply>
</GetLoanApplicationStatusReply>