GET api/loansourceoffunds/{id}
Get LoanSourceOfFunds by id.
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/loansourceoffunds/{id}. The user permission can be defined on User Settings screen in Abacus. For license, please contact Fern manager.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
LoanSourceOfFunds's id. |
integer |
Required |
Body Parameters
None.
Response Information
Response Codes
Success Status:
- OK (200), please see resource description below.
Failed Status(es):
Resource Description
Returns a LoanSourceOfFunds for a given id.
LoanSourceOfFundsDto| Name | Description | Type | Additional information |
|---|---|---|---|
| LoanSourceOfFundsID |
Unique Identifier of Loan Source Of Funds. |
integer | |
| Code |
Code. |
string | |
| Description |
Description. |
string | |
| CurrencyId |
Currency Identifier. |
integer | |
| TopUpAmount |
Topup Amount. |
decimal number | |
| HighLevelSourceFund |
Indicates if the fund is High Level Source of Fund. |
boolean | |
| RemainingFunds |
Remaining Fund. |
decimal number | |
| AllProducts |
Indictes true if SOF is applicable for all products. |
boolean | |
| LoanProductIDs |
Loan Product Identifiers. |
string | |
| DefaultItem |
Indicates true if the SOF is default item. |
boolean | |
| SOFType |
Source of Fund Type. |
SourceOFFundType |
Response Formats
application/json, text/json
{
"loanSourceOfFundsID": 1,
"code": "sample string 1",
"description": "sample string 2",
"currencyId": 3,
"topUpAmount": 4.0,
"highLevelSourceFund": true,
"remainingFunds": 6.0,
"allProducts": true,
"loanProductIDs": "sample string 8",
"defaultItem": true,
"sofType": 1
}
application/xml, text/xml
<LoanSourceOfFundsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto.CU"> <AllProducts>true</AllProducts> <Code>sample string 1</Code> <CurrencyId>3</CurrencyId> <DefaultItem>true</DefaultItem> <Description>sample string 2</Description> <HighLevelSourceFund>true</HighLevelSourceFund> <LoanProductIDs>sample string 8</LoanProductIDs> <LoanSourceOfFundsID>1</LoanSourceOfFundsID> <RemainingFunds>6</RemainingFunds> <SOFType>Revolving</SOFType> <TopUpAmount>4</TopUpAmount> </LoanSourceOfFundsDto>