Skip to main content

Generate Repayment Schedule for Loan

POST Generate Repayment Schedule

This is the Loan management API used for generating a Repayment Schedule for the loan.

URL: {{base_url}}/loan-management/v1/generateRepaymentSchedule

Request
Request Type: POST
Authorization: Bearer Token

Query Parameter
No Parameter
Request Body Required
{
  "tenure": 0,
  "irr": 0,
  "principal_amount": 0,
  "interest_rate": 0,
  "repayment_start_date": "2023-04-06T08:28:17.491Z",
  "interest_start_date": "2023-04-06T08:28:17.492Z",
  "repayment_properties": {
    "additionalProp1": {},
    "additionalProp2": {},
    "additionalProp3": {}
  },
  "charges_data": [
    {
      "original_amount": 0,
      "paid_amount": 0,
      "charge_id": "string",
      "charge_rate": 0,
      "tax_amount": 0,
      "status": "string",
      "receivable_payable": "string",
      "is_tax_applicable": true,
      "pending_amount": 0,
      "waived_amount": 0,
      "source_id": "string",
      "tax_type": "string",
      "amount_without_tax": 0,
      "charge_label": "string",
      "due_date": "2023-04-06T08:28:17.492Z",
      "transaction_date": "2023-04-06T08:28:17.492Z"
    }
  ],
  "loan_id": 0,
  "scheme_code": "string",
  "is_save_db": true,
  "loan_type": "string",
  "frequency": 0,
  "disbursal_status": "string",
  "start_principle_recovery": true
}

Request: 200
{
    "response": true,
    "data": {},
    "error": {}
}