Skip to main content

Save IMD Charges for Loan Application

POST ImdCharge/save

This is the Loan management API used for saving IMD charges for Loan applications.

URL: {{base_url}}/loan-management/v1/imdCharge/save

Request
Request Type: POST
Authorization: Bearer Token

Query Parameter
No Parameter
Request Body Required
{
  "transaction_type": "string",
  "transaction_amount": 0,
  "transaction_date": "2023-04-06T08:11:15.084Z",
  "transaction_id": 0,
  "charge_code": "string",
  "loan_application_number": "string",
  "is_tax_applicable": true,
  "caf_number": "string",
  "product": "string",
  "scheme": "string",
  "bank_code": "string"
}

{
  "transaction_type": "string", //mandatory - "rcp"
  "transaction_amount": 0, //mandatory
  "transaction_date": "2023-04-06", //mandatory
  "transaction_id": 0, //mandatory
  "charge_code": "string", //mandatory- "imd"
  "loan_application_number": "string",
  "is_tax_applicable": true,
  "caf_number": "string", //mandatory
  "product": "string", //mandatory
  "scheme": "string", //mandatory
  "bank_code": "string"
}
Request: 200
{
    "response": true,
    "data": {},
    "error": {}
}