latestOpenAPI 3.0.02026-08-133383136.3 KB
fc4f4dd68f9b
Loans
Create Loan
post/v1/loan
Headers
accept-languagestring
Language of the response, supported languages: en-us, in
idempotency-keystring
Idempotency Key for retries
Request body
Example request
{
"customerReferenceNo": "c3eb1619-ff24-4773-97d8-b05264621e60",
"loanAmount": 50000,
"loanType": "BNPL",
"loanTerm": 30,
"remark": "Loan for xyz ltd, construction purpose",
"preApproved": true
}Response
Loan created successfully
Example response
{
"data": {
"loanTerm": 30,
"loanType": "BNPL",
"loanStatus": "waiting-for-disbursal",
"loanDueDate": "21 August 2023",
"loanDueDateUTC": "2023-08-20T18:30:00.000Z",
"dueDatePostGracePeriod": "24 August 2023",
"dueDatePostGracePeriodUTC": "2023-08-23T18:30:00.000Z",
"gracePeriodInDays": 3
}
}