GET api/loanrefinancereason

Get loan refinance reasons.

Requires Authorisation

The api request must supply authenticated token in a custom variable in the request header. The custom variable name is configured in web.config. The default name of the custom variable is “X-Fern-Token”.

Requires Api License and User Access

The api requires license and user permission for API ID, GETapi/loanrefinancereason. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Response Codes

Success Status:

  • OK (200), please see resource description below.

Failed Status(es):

Resource Description

Returns list of loan reasons.

Collection of LoanRefinanceReasonDto
NameDescriptionTypeAdditional information
LoanRefinanceReasonID

Unique Identifier of Loan Refinance Reason.

integer
Code

Code of Loan Refinance Reason.

string
Description

Description of Loan Refinance Reason.

string
AllProducts

Indicates true if the reason is applicable for all products.

boolean
LoanProductIDs

Appicable Loan Products Identifiers.

string
DefaultItem

Indicates whether the reason is default item.

boolean

Response Formats

application/json, text/json

Sample:
[
  {
    "loanRefinanceReasonID": 1,
    "code": "sample string 1",
    "description": "sample string 2",
    "allProducts": true,
    "loanProductIDs": "sample string 3",
    "defaultItem": true
  },
  {
    "loanRefinanceReasonID": 1,
    "code": "sample string 1",
    "description": "sample string 2",
    "allProducts": true,
    "loanProductIDs": "sample string 3",
    "defaultItem": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfLoanRefinanceReasonDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU.Accounts">
  <LoanRefinanceReasonDto>
    <AllProducts>true</AllProducts>
    <Code>sample string 1</Code>
    <DefaultItem>true</DefaultItem>
    <Description>sample string 2</Description>
    <LoanProductIDs>sample string 3</LoanProductIDs>
    <LoanRefinanceReasonID>1</LoanRefinanceReasonID>
  </LoanRefinanceReasonDto>
  <LoanRefinanceReasonDto>
    <AllProducts>true</AllProducts>
    <Code>sample string 1</Code>
    <DefaultItem>true</DefaultItem>
    <Description>sample string 2</Description>
    <LoanProductIDs>sample string 3</LoanProductIDs>
    <LoanRefinanceReasonID>1</LoanRefinanceReasonID>
  </LoanRefinanceReasonDto>
</ArrayOfLoanRefinanceReasonDto>