GET api/LoanApplication/Status/{id}
Get the status of the loan application
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Possible error responses: 1. Invalid loan application id - {"id": "4ac9648d-02e0-444c-b858-600baa85425c", "ErrorMessage": "The loanApplicationId does not exist or you do not have permissions to check its status."}
CheckLoanApplicationStatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| LoanApplicationId | globally unique identifier |
None. |
|
| LoanReference | string |
None. |
|
| IsSigned | boolean |
None. |
|
| Status | string |
None. |
|
| Info | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LoanApplicationId": "43efbad4-4c1a-4fed-a251-73598f1f84db",
"LoanReference": "sample string 2",
"IsSigned": true,
"Status": "sample string 4",
"Info": "sample string 5"
}
text/html
Sample:
{"LoanApplicationId":"43efbad4-4c1a-4fed-a251-73598f1f84db","LoanReference":"sample string 2","IsSigned":true,"Status":"sample string 4","Info":"sample string 5"}
application/xml, text/xml
Sample:
<CheckLoanApplicationStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OmniPort.API.Services.APIResponses.CreditCheckResponses"> <CreditCheckId>1bae7f78-fd19-44dc-be18-a6ca68367993</CreditCheckId> <Info>sample string 5</Info> <IsSigned>true</IsSigned> <LoanApplicationId>43efbad4-4c1a-4fed-a251-73598f1f84db</LoanApplicationId> <LoanReference>sample string 2</LoanReference> <Status>sample string 4</Status> <StatusNumber>6</StatusNumber> </CheckLoanApplicationStatusResponse>