Interest configuration
Interest configuration
Using the interest configuration endpoints, you can update the interest configuration of your existing savings accounts. This functionality is enabled on a per-client basis. If you're interested in using this functionality, please speak to your Client Director.
The initial interestConfigurationId
is usually set during account creation. You can request a new configuration ID from your usual ClearBank contact.
You can:
- Update your interest configuration using the POST /interest/v1/accounts/{accountId}/configurations endpoint
- Get all interest configurations set for an account using the GET /interest/v1/accounts/{accountId}/configurations endpoint
- Set future-dated interest configurations using the PUT /v1/accounts/{accountId}/future-configurations endpoint
- Delete all future interest configurations using the DELETE /v1/accounts/{accountId}/future-configurations endpoint
The interest rate will apply for the whole of the day on which it is set. Interest is calculated in the early hours of the following morning based on data from midnight UK time.
Daily interest example
If you update an interest product at 15:00 on Tuesday, all of Tuesday's interest, even before 15:00, will be calculated at the new interest rate. The Interest Paid and Transaction Settled webhooks will notify you of the amount of interest paid each day.
This diagram shows the message flow:
Monthly interest example
If you update an interest product at 14:00 on the 5th, interest from the 1st to the 4th will be calculated at the previous rate at the end of the month. Interest from the 5th until the end of the month will be calculated using the new rate. The Interest Paid and Transaction Settled webhooks will notify you of the amount of interest paid at the end of the month.
This diagram shows the message flow:
Future-dating interest configurations
You can set multiple future interest configurations for your account with the PUT /v1/accounts/{accountId}/future-configurations endpoint.
Each selected interest configuration will apply from the start of the day provided in the effectiveFrom
field. For example, you might set an account to move from interest config A to interest config B on 1 August. Interest will be calculated based on the balance from midnight on 31 July using interest config A. Any future interest interest calculations will be based on interest config B until any further changes to the interest configurations come into effect.
If you update the interest configuration using the POST /interest/v1/accounts/{accountId}/configurations endpoint while future-dated configurations are set, the update will remain active until the next future-dated configuration takes effect. For example, updating to config C on 1 October will apply until 14 October if a future-dated config D is set to start on 15 October. Config D will then take effect as scheduled.
Use the DELETE /v1/accounts/{accountId}/future-configurations endpoint to remove all future-dated interest configurations from an account. The account will remain on its current interest configuration.
This diagram shows an example scenario where you have an introductory interest rate and daily interest payments:
For monthly interest payments, it works similarly: if you future-date an interest product to change on 10 November, interest from 1 to 9 November will be calculated at the initial rate. Interest from 10 November until the end of the month will be calculated using the new rate. The Interest Paid and Transaction Settled webhooks will notify you of the amount of interest paid at the end of the month.
Multiple interest configurations example
Multiple interest configurations allow you to offer different interest rates based on the type of product or membership a customer has. Customers can seamlessly switch between products without closing and reopening their account.
In this example, three different savings account memberships are available:
- Standard Membership (Product A): This is a non-paid membership where customers earn a 2% interest rate on their savings.
- Silver Membership (Product B): For a £5 monthly fee, customers earn a 5% interest rate on their savings.
- Gold Membership (Product C): For a £10 monthly fee, customers earn an 8% interest rate on their savings.
- If a customer with a Standard Membership decides to upgrade to a Silver Membership, they would start earning a 5% interest rate instead of 2%.
- If a customer with a Gold Membership decides to downgrade to a Standard Membership, they would start earning a 2% interest rate instead of 8%.
Interest tiers
You can configure multiple interest tiers when agreeing an interest configuration with us. Tiers allow you to specify balance ranges, each with its own interest rate, allowing you to offer different levels of interest depending on account balance. There are two methods for applying interest to tiers:
- Whole - The total balance of the account earns the rate of the tier it falls into.
- Segregated - Each part of the account balance earns the rate for its range.
Interest tiers example:
Tier | Balance range | Interest rate |
---|---|---|
1 | £0.00 - £1,000.00 | 3.00% |
2 | £1,000.01 - £5,000.00 | 4.00% |
3 | £5,000.01 - £10,000.00 | 4.75% |
Using the tier examples above, an account with a balance of £7,500.00 would earn interest in the following way depending on the method applied:
- Whole: The total balance is in the range of tier 3, so an interest rate of 4.75% applies to the whole balance
- Segregated:
- The first £1,000.00 falls into tier 1 and earns an interest rate of 3.00%
- The next £4,000.00 falls into tier 2 and earns an interest rate of 4.00%
- The remaining £2,500.00 falls into tier 3 and earns an interest rate of 4.75%