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": "931d32a8-5869-4345-97e5-fa2ede13eb20", "LoanReference": "sample string 2", "IsSigned": true, "Status": "sample string 4", "Info": "sample string 5" }
text/html
Sample:
{"LoanApplicationId":"931d32a8-5869-4345-97e5-fa2ede13eb20","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>e5bb2f97-7f4e-4107-842a-888756d10cbf</CreditCheckId> <Info>sample string 5</Info> <IsSigned>true</IsSigned> <LoanApplicationId>931d32a8-5869-4345-97e5-fa2ede13eb20</LoanApplicationId> <LoanReference>sample string 2</LoanReference> <Status>sample string 4</Status> <StatusNumber>6</StatusNumber> </CheckLoanApplicationStatusResponse>