GET api/fee/feeband

Get all fee bands.

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/fee/feeband. 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 fee bands.

Collection of FeeBandDto
NameDescriptionTypeAdditional information
CUFeeID

Unique identifier of the fee linked to any account.

integer
AllowedRange

Minimum and maximum range of Fee.

string
ProductID

Unique identifier of the product linked to Fee.

integer
FeeName

Name of the Loan Issue Fee.

string
FeeType

The list of fee type.

string
Percentage

Percentage limit of Fee.

decimal number
FeeAmount

Total Fee Amount.

decimal number
FeeBandID

UniqueID of Fee Band.

integer
MinValue

Minimum value of Fee.

decimal number
MaxValue

Maximum value of Fee.

decimal number
RangeMinimum

Minimum allowed Range.

decimal number
RangeMaximum

Maximum allowed Range.

decimal number
MinPercentage

Minimum Percentage of fee.

decimal number
MaxPercentage

Maximum Percentage of fee.

decimal number

Response Formats

application/json, text/json

Sample:
[
  {
    "cuFeeID": 1,
    "allowedRange": "sample string 1",
    "productID": 1,
    "feeName": "sample string 2",
    "feeType": "sample string 3",
    "percentage": 1.0,
    "feeAmount": 1.0,
    "feeBandID": 1,
    "minValue": 1.0,
    "maxValue": 1.0,
    "rangeMinimum": 1.0,
    "rangeMaximum": 1.0,
    "minPercentage": 1.1,
    "maxPercentage": 1.1
  },
  {
    "cuFeeID": 1,
    "allowedRange": "sample string 1",
    "productID": 1,
    "feeName": "sample string 2",
    "feeType": "sample string 3",
    "percentage": 1.0,
    "feeAmount": 1.0,
    "feeBandID": 1,
    "minValue": 1.0,
    "maxValue": 1.0,
    "rangeMinimum": 1.0,
    "rangeMaximum": 1.0,
    "minPercentage": 1.1,
    "maxPercentage": 1.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfFeeBandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fern.Abacus.ObjectModel.Dto">
  <FeeBandDto>
    <AllowedRange>sample string 1</AllowedRange>
    <CUFeeID>1</CUFeeID>
    <FeeAmount>1</FeeAmount>
    <FeeBandID>1</FeeBandID>
    <FeeName>sample string 2</FeeName>
    <FeeType>sample string 3</FeeType>
    <MaxPercentage>1.1</MaxPercentage>
    <MaxValue>1</MaxValue>
    <MinPercentage>1.1</MinPercentage>
    <MinValue>1</MinValue>
    <Percentage>1</Percentage>
    <ProductID>1</ProductID>
    <RangeMaximum>1</RangeMaximum>
    <RangeMinimum>1</RangeMinimum>
  </FeeBandDto>
  <FeeBandDto>
    <AllowedRange>sample string 1</AllowedRange>
    <CUFeeID>1</CUFeeID>
    <FeeAmount>1</FeeAmount>
    <FeeBandID>1</FeeBandID>
    <FeeName>sample string 2</FeeName>
    <FeeType>sample string 3</FeeType>
    <MaxPercentage>1.1</MaxPercentage>
    <MaxValue>1</MaxValue>
    <MinPercentage>1.1</MinPercentage>
    <MinValue>1</MinValue>
    <Percentage>1</Percentage>
    <ProductID>1</ProductID>
    <RangeMaximum>1</RangeMaximum>
    <RangeMinimum>1</RangeMinimum>
  </FeeBandDto>
</ArrayOfFeeBandDto>