feat : Add api for E-mandate Validation

This commit is contained in:
2025-11-12 13:00:53 +05:30
parent 739f2737ba
commit 759869b0e3
3 changed files with 27 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ const rtgsRoute = require('./rtgs.route');
const impsRoute = require('./imps.route');
const { npciResponse } = require('../controllers/npci.controller');
const otp = require('./otp.route');
const eMandate = require('./emandate.route');
const router = express.Router();
router.use('/auth', authRoute);
@@ -25,5 +25,6 @@ router.use('/payment/imps', authenticate, impsRoute);
router.use('/beneficiary', authenticate, beneficiaryRoute);
router.use('/npci/beneficiary-response', npciResponse);
router.use('/otp', otp);
router.use('/e-mandate',authenticate,eMandate);
module.exports = router;