Bulk Repayment

POST /v1/financing/bulk-payment

Reconcile repayment schedules

Payload

This is the payload required to reconcile repayment schedule(s). If you have not gone through our guide on a quick set up to making requests, check here

{
    "customer_partner_id": "dj2038d9w-877f-4233-af7d-b19c5be67581",
    "payments": [
        {
            "transaction_reference": "bf0c4ae7-877f-4233-af7d-b19c5be67581",
            "amount": 150750
        },
        {
            "transaction_reference": "bf0c4ae7-877f-4233-af7d-b19c5be67581",
            "amount": 150750
        }
    ]
}

The payload object

Compulsory Fields


payments float
An array containing the payment schedule information


    transaction_reference string
The ID of the loan


    amount float
The amount paid towards this transaction


Response

This is the expected response if the request is successful. Listen to your webhook, for the payment's final status. See our webhooks

{
    "status": "success",
    "message": "Repayment(s) reconciled successfully",
    "data": []
}