GET api/LoanApplication/Details/{loanIdentifier}

Get info for specific loan application

Request Information

URI Parameters

NameDescriptionTypeAdditional information
loanIdentifier

string

Required

Body Parameters

None.

Response Information

Resource Description

LoanInfoResponseModel
NameDescriptionTypeAdditional 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.

CustomerLastName

string

None.

CustomerCurrentAddressPostcode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "LoanApplicationId": "3a42ff54-4489-41b0-81d0-899a18e44b5d",
  "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,
  "CustomerLastName": "sample string 12",
  "CustomerCurrentAddressPostcode": "sample string 13"
}

text/html

Sample:
{"LoanApplicationId":"3a42ff54-4489-41b0-81d0-899a18e44b5d","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,"CustomerLastName":"sample string 12","CustomerCurrentAddressPostcode":"sample string 13"}

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>
  <CustomerCurrentAddressPostcode>sample string 13</CustomerCurrentAddressPostcode>
  <CustomerLastName>sample string 12</CustomerLastName>
  <DeferredTerm>9</DeferredTerm>
  <Deposit>6</Deposit>
  <LoanAmount>5</LoanAmount>
  <LoanApplicationId>3a42ff54-4489-41b0-81d0-899a18e44b5d</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>