From cf94a3b425f49ea3f5404e0425fdb604d7f0b957 Mon Sep 17 00:00:00 2001 From: asif Date: Thu, 18 Sep 2025 13:08:53 +0530 Subject: [PATCH] added remarks for IMPS transactions --- src/routes/imps.route.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/imps.route.js b/src/routes/imps.route.js index 668d0b7..83f8f49 100644 --- a/src/routes/imps.route.js +++ b/src/routes/imps.route.js @@ -8,7 +8,7 @@ const router = express.Router(); router.use(impsValidator, paymentSecretValidator); const impsRoute = async (req, res) => { - const { fromAccount, toAccount, ifscCode, amount, beneficiaryName } = + const { fromAccount, toAccount, ifscCode, amount, beneficiaryName, remarks } = req.body; try { @@ -20,7 +20,7 @@ const impsRoute = async (req, res) => { ifscCode, beneficiaryName, 'SAVINGS', - '' + remarks ); if (result.startsWith('Message produced successfully')) {