Create payment entries
Create payment entries
POST https://<your_business_alias>.lendastack.io/ias/loan/paymentEntries
This endpoint register details of loan repayment, reversals, settlement & refunds.
Headers
Name
Type
Description
Authentication*
String
The encoded combination of your public key and secret key (see the Test and go live section of the docs)
Request Body
Name
Type
Description
{
"status": true,
"message": "You have registered payment for 1 Loan. Please note that payment reconciliation occurs Hourly."
}{
"status": false,
"message": "Loan with code: LC42723 not found, please ensure it has been disbursed"
}{
"loanCode": "LC42723", // [required]
"paymentType": "Repayment", //[required] Repayment, Refund, Reversal, Settlement
"paymentMode": "Cash", //[required] Cash, Cheque,
"paymentDate": "2020-03-07", //[required]
"paymentAmount": 0 //[required]
}Last updated
Was this helpful?