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

NameTypeDescription

Authentication

string

Authentication token to track down who is emptying our stocks.

Request Body

NameTypeDescription

pezesha_id

string

Pezesha ID returned during registration

channel

string

Client Name given by Pezesha

amount

string

Loan Amount entered by user

duration

string

Loan duration from Offers endpoint

interest

string

Loan Interest Amount

rate

string

Loan Interest Rate

fee

string

Service Fee from Offers endpoint

payment_details.type

string

payment_details.number

string

payment_details.callback_url

string

{
   "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