Daily repayments report

This report contains the detail of payment amount allocated to the original transactions (principal), interest, fees or instalments.

Format: JSON
File name: [ClientID]_DAILYREPAYMENTREPORT_[yyyymmdd].json
Frequency: Daily
Stored in: API call or client-hosted SFTP folder
Product applicability: PayCredit

Data fields


Seq NoField NameDescriptionExampleFormat
1client_idClient ID123456Numeric
2product_idProduct ID123Numeric
3account_idAccount ID946312345Numeric
4account_referenceClient provided account referenceabcd-1234-ghjk-5678Alphanumeric
5transaction_idTransaction ID of the credit transaction7654321Numeric
6repayment_amountOriginal total payment amount3.00Numeric
7transaction_dateDate repayment was received.2024-10-29yyyy-mm-dd
8interest_repaidPortion of this payment allocated to posted interest = prev_accrued_interest_repaid_amount + outstd_accrued_interest_repaid_amount2.34000Numeric
9fees_repaidPortion of this payment allocated to the fees = stmnt_fee_repaid_amount + prev_stmnt_fee_repaid_amount + outstd_stmnt_fee_repaid_amount0.66000Numeric
10principal_repaidPortion of this payment allocated to the principal = stmnt_principal_repaid_amount + prev_stmnt_principal_repaid_amount + outstd_stmnt_principal_repaid_amount0.00000Numeric
11instalment_repaidPortion of this payment allocated to instalments0.00Numeric
12unallocated_payment_amountUnallocated portion of the payment, in case of excess payment0.00000Numeric
13report_generation_dateDate the report was generated.2024-10-30yyyy-mm-dd

Sample report data

{
        "client_id": 123456,
        "product_id": 123,
        "account_id": 987654321,
        "account_reference": null,
        "transaction_id": 5426951,
        "repayment_amount": 3.00,
        "transaction_date": "2024-10-29",
        "interest_repaid": 2.34000,
        "fees_repaid": 0.66000,
        "principal_repaid": 0.00000,
        "instalment_repaid": 0.00,
        "unallocated_payment_amount": 0.00000,
        "report_generation_date": "2024-10-30"
    },