Add Bank Details for Loan
POST Add new bank
This is the Loan Modification API used to add new bank details to a Loan.
First, fetch the relevant masters from the following API: Get Master Type | SynoFin Docs
using the below request body:
[
{
"parent": "service_request_id",
"parent_id": "270", // Loan ID
"type": "customers"
},
{
"type": "account_type"
},
{
"type": "is_repayment_account"
},
{
"type": "is_disbursal_account"
}
]
Request
URL: {{base_url}}/loan-modification/v1/service-request/save
Request Body Required
{
"loan_id": "270",
"request_data": {
"account_name": "ICICI Bank",
"account_number": "424324342342424",
"account_type": "saving_account",
"bank": "ICICI Bank",
"bank_address": "ICICI Bank Ltd., Ground Floor, Saurav Towers, Plot No. C2, C Block, Vaishali Nagar, Jaipur.302021",
"bank_name": "ICICI Bank",
"branch_city": "JAIPUR",
"branch_name": "JAIPURVAISHALI NAGAR",
"customers": "265",
"ifsc": "ICIC0000235",
"instrument_bank_address": "ICICI Bank Ltd., Ground Floor, Saurav Towers, Plot No. C2, C Block, Vaishali Nagar, Jaipur.302021",
"instrument_bank_name": "ICICI Bank",
"is_disbursal_account": "false",
"is_repayment_account": "true",
"transaction_date": "2025-01-08"
},
"service_request_id": "",
"service_request_subtype": "2",
"service_request_type": "add_new_bank_account",
"service_type": ""
}
Response 200:
{
"response": true,
"data": {
"result": null,
"status": "approved",
"service_request_id": 494,
"unique_transaction_number": null,
"transaction_id": 105209,
"unique_source_identifier": null
},
"error": null,
"timestamp": "2025-01-08T10:13:24.346+00:00"
}
No Comments