GET api/LoanApplication/Details/{loanIdentifier}
Get info for specific loan application
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loanIdentifier | string |
Required |
Body Parameters
None.
Response Information
Resource Description
LoanInfoResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoanApplicationId | globally unique identifier |
None. |
|
| LoanReference | string |
None. |
|
| Status | string |
None. |
|
| ProductCode | string |
None. |
|
| LoanAmount | decimal number |
None. |
|
| Deposit | decimal number |
None. |
|
| Subsidy | decimal number |
None. |
|
| PaymentTerm | integer |
None. |
|
| DeferredTerm | integer |
None. |
|
| TotalTerm | integer |
None. |
|
| APR | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"LoanApplicationId": "f739b4c8-ebb0-4dc3-a826-05b6064d68e2",
"LoanReference": "sample string 2",
"Status": "sample string 3",
"ProductCode": "sample string 4",
"LoanAmount": 5.0,
"Deposit": 6.0,
"Subsidy": 7.0,
"PaymentTerm": 8,
"DeferredTerm": 9,
"TotalTerm": 10,
"APR": 11.0
}
text/html
Sample:
{"LoanApplicationId":"f739b4c8-ebb0-4dc3-a826-05b6064d68e2","LoanReference":"sample string 2","Status":"sample string 3","ProductCode":"sample string 4","LoanAmount":5.0,"Deposit":6.0,"Subsidy":7.0,"PaymentTerm":8,"DeferredTerm":9,"TotalTerm":10,"APR":11.0}
application/xml, text/xml
Sample:
<LoanInfoResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OmniPort.API.Services.APIResponses.LoanApplicationResponses"> <APR>11</APR> <DeferredTerm>9</DeferredTerm> <Deposit>6</Deposit> <LoanAmount>5</LoanAmount> <LoanApplicationId>f739b4c8-ebb0-4dc3-a826-05b6064d68e2</LoanApplicationId> <LoanReference>sample string 2</LoanReference> <PaymentTerm>8</PaymentTerm> <ProductCode>sample string 4</ProductCode> <Status>sample string 3</Status> <Subsidy>7</Subsidy> <TotalTerm>10</TotalTerm> </LoanInfoResponseModel>