post https://demo.onefin.in/api/v1/nach/physical/initiate
Initiate Physical Nach registration using appropriate inputs.
POST /api/v1/nach/physical/initiate/
Sample payload is given below:
{
"amount":"<maximum amount>",
"account_number":"<customer account number>",
"name":"<name of the customer>",
"mobile":"<mobile number of the customer>",
"ifsc_code":"<ifsc code>",
"account_type":"<current/savings>",
"debit_type":"<variable/fixed>",
"start_date":"<debit start date>",
"end_date":"<debit end date>",
"frequency":"<frequency of debits: monthly/ quarterly/semiannually/ yearly / adhoc>",
"loan_account_no":"<Loan Account Number to associate with the given loan.>"
}
This API returns a unique identifier for identifying Physical Nach.
{
"is_success": true,
"data": {
"physical_nach_id": "physical nach uuid",
"nach_pdf_url": "physical nach pdf url"
}
}
This identifier will be used for all other APIs, so it must be stored in your database.