Add interest base rate type - instant
Use case
With the example of the Riksbank Reference Rate we will show how to add an interest base rate type with instant rate application rule to the Tuum system.
We will add the Riksbank Reference Rate base rate.
{
"rateBaseCode": "Riksbank Reference Rate",
"maturityTypeCode": null,
"maturityLength": null,
"currencyCode": "SEK",
"referenceRateTypeCode": "RIX_RR",
...
}
The base rate is applied to the existing loan offers and contracts periodically.
"rateApplicationRule": "INSTANT"
The 4eye confirmation for the the rate fixings is required.
"fourEyeRequired": true
Sample API call
To add new base rate types, use the following endpoint:
https://currency-api.sandbox.tuumplatform.com/api/v1/base-rates/types
Sample request
Below is an example request body of the API call for adding a new base rate types.
{
"rateBaseCode": "Riksbank Reference Rate",
"maturityTypeCode": null,
"maturityLength": null,
"currencyCode": "SEK",
"referenceRateTypeCode": "RIX_RR",
"rateApplicationRule": "INSTANT",
"fourEyeRequired": true
}
Sample response
Below you find an example response body to the API call above.
Result
As a result, the Riksbank Reference Rate month rate with an instant application rule is added to the Tuum system.
Last updated
Was this helpful?