Skip to main content

Create Loan

Description: Profile an employee for loan.

Request Parameters

ParameterTypeDescriptionRequired
loanRefStringUnique client loan transaction reference Yes
employeeIDStringEmployee payee ID No
accountNoIntegerNUBAN Account No Yes
bankCodeIntegerEmployee bank code No
businessIdStringeTranzact corporate identifier Yes
totalAmountFloatTotal loan issued amount Yes
rentalAmountFloatMonthly repayable amountYes
balanceFloatLoan BalanceNo
tenureIntegerLoan tenure value Yes
tenureTypeStringLoan tenure in days, weeks, month, year Yes
nextChargeDateStringNext repayment dateYes
loanAccountNoStringAccount Provided by client for employee loan repayment. Yes
loanBankcodeStringThe bank code of the bank on which the loan account is domiciled.Yes
POST {base_url}/loan
curl `${base_url}/loan`
-H "Content-type: application/json"
-H "Authorization: Bearer YOUR_SECRET_KEY"
-X POST
-d '{
"loanRef ":"34262333",
"staffID": "1234",
"accountNo": 0038392323,
"bankCode": 123,
"businessId":"2839202",
"totalAmount": 250000.00,
"rentalAmount": 50000.00,
"balance": 250000.00,
"tenure": 6,
"tenureType": "month",
"nextChargeDate": "25-02-2021",
"loanAccountNo": "0001980234",
"loanBankcode ": "044"
}
'