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": "a262bc19-9d33-41b0-bde4-c9352fe03ddf",
"LoanReference": "sample string 2",
"IsSigned": true,
"Status": "sample string 4",
"Info": "sample string 5"
}
text/html
Sample:
{"LoanApplicationId":"a262bc19-9d33-41b0-bde4-c9352fe03ddf","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>2686ebd1-7d7b-4b7d-8ecf-7da6e2cef4f4</CreditCheckId> <Info>sample string 5</Info> <IsSigned>true</IsSigned> <LoanApplicationId>a262bc19-9d33-41b0-bde4-c9352fe03ddf</LoanApplicationId> <LoanReference>sample string 2</LoanReference> <Status>sample string 4</Status> <StatusNumber>6</StatusNumber> </CheckLoanApplicationStatusResponse>