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."}
CheckLoanApplicationStatusResponseName | 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": "0871bd4f-3e0d-4bac-b788-845f7dcf7c71", "LoanReference": "sample string 2", "IsSigned": true, "Status": "sample string 4", "Info": "sample string 5" }
text/html
Sample:
{"LoanApplicationId":"0871bd4f-3e0d-4bac-b788-845f7dcf7c71","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>e0fb5644-a639-432f-8075-cf72ebdded4a</CreditCheckId> <Info>sample string 5</Info> <IsSigned>true</IsSigned> <LoanApplicationId>0871bd4f-3e0d-4bac-b788-845f7dcf7c71</LoanApplicationId> <LoanReference>sample string 2</LoanReference> <Status>sample string 4</Status> <StatusNumber>6</StatusNumber> </CheckLoanApplicationStatusResponse>