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": "cbd39cd8-6d54-494e-a717-dcb444b289b2",
"LoanReference": "sample string 2",
"IsSigned": true,
"Status": "sample string 4",
"Info": "sample string 5"
}
text/html
Sample:
{"LoanApplicationId":"cbd39cd8-6d54-494e-a717-dcb444b289b2","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>1b2fd76c-4ca1-4608-86b4-14219f73a942</CreditCheckId> <Info>sample string 5</Info> <IsSigned>true</IsSigned> <LoanApplicationId>cbd39cd8-6d54-494e-a717-dcb444b289b2</LoanApplicationId> <LoanReference>sample string 2</LoanReference> <Status>sample string 4</Status> <StatusNumber>6</StatusNumber> </CheckLoanApplicationStatusResponse>