Loan Application

Apply for loan on behalf of merchant/customer

Loan Application

POST {{BASE_URL}}/mfi/v1/borrowers/loans

This endpoint allows you to apply for a loan on behalf of your user.

Headers

Request Body

{
   "status":200,
   "response_code":0,
   "error":false,
   "message":"Loan approved",
   "data":{
      "loan_id":94202
   }
}

For Partners managing a Pezesha wallet, make sure to persist the Loan ID as it is needed during Loan Repayment.

{
 "pezesha_id": 239831,
 "amount": 500,
 "duration": 30,
 "interest": 50,
 "rate": 10,
 "fee": 10,
 "channel": "Partner Name",
 "payment_details": {
   "type": "BUY_GOODS/PAYBILL",
   "number": "898927",
   "callback_url": "https://example.com/callback"
 }
}

Last updated