riverty logo

Docs

The Interest Object

The interest object contains all interest associated with a specific claim.

Attributes

Attributes Type Description
invoiceNumber string Client-assigned number for each invoice.
currency number This reflects all relevant currencies in ISO-4217.
originalAmount number The original amount of the principal claim. A positive amount indicates a claim against the debtor. Positive amounts only.
remainingAmount number The outstanding principal claim that must be collected by the Debt Collection Agency. Positive amounts only.
fromDate date The date when the interest occurred.
toDate string The end date of the interest.
capitalized string Vital in Nordic loan contexts: Creditors can charge interest on capitalized claims, known as compound interest.
description enum The description of the interest.

"interests": [
        {
            "invoiceNumber": "I5408705335",
            "currency": "EUR",
            "remainingAmount": 10,
            "fromDate": "2023-09-23",
            "toDate": "2023-11-23",
            "capitalized": false,
            "originalAmount": 20,
            "description":"interest description"
        },
        {
            "invoiceNumber": "I4055478723",
            "currency": "EUR",
            "remainingAmount": 10,
            "fromDate": "2023-09-23",
            "toDate": "2023-09-23",
            "capitalized": false,
            "originalAmount": 20,
            "description":"interest description"
        }
    ]