ndps-aipay-ionic-capacitor
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ndps-aipay-ionic-capacitor

The NDPS AIPAY Ionic Capacitor SDK allows you to integrate the NDPS Payment Gateway into your application and start collecting payments from your customers.

This plugin has been developed and tested on Capacitor version 5.0

Install

npm install ndps-aipay-ionic-capacitor
npx cap sync

Usage(Android, iOS)

// import NDPS payment gateway plugin
import { NdpsAipayLibrary } from 'ndps-aipay-ionic-capacitor';

// initialize and call NDPS payment gateway plugin
const { NdpsAipayPayments } = NdpsAipayLibrary;
const openWebViewUrl = await NdpsAipayPayments({ value: {
        "merchId": "317157",
        "password": "Test@123",
        "merchTxnId": "testtxn1234",
        "product": "NSE",
        "custAccNo": "213232323",
        "txnCurrency": "INR",
        "custFirstName": "testuser",
        "custEmail": "test@xyz.com",
        "custMobile": "8888888888",
        "amount": "1",
        "encryptionKey": "A4476C2062FFA58980DC8F79EB6A799E",
        "decryptionKey": "75AEF0FA1B94B3C10D4F5B268F757F11",
        "responseHashKey": "KEYRESP123657234",
        "udf1": "udf1",
        "udf2": "udf2",
        "udf3": "udf3",
        "udf4": "udf4",
        "udf5": "udf5",
        "payMode": "uat" // for production use change to live
      } });

    const NdpsAipayPaymentsFn = ndps_pg_response.bind(this);
    function ndps_pg_response(eventData: any) {
      window.removeEventListener('ndps_pg_response', NdpsAipayPaymentsFn);
      let parsedResponse = JSON.parse(eventData.response);
      if (parsedResponse['payInstrument']['responseDetails']['statusCode'] === "OTS0101") {
        alert('Transaction has been cancelled by the user!')
      } else {
        if (parsedResponse['payInstrument']['responseDetails']['statusCode'] === "OTS0000" || parsedResponse['payInstrument']['responseDetails']['statusCode'] === "OTS0551") {
          alert('Transaction Success');
        } else {
          alert('Transaction Failed!')
        }
      }
    }
    window.addEventListener('ndps_pg_response', NdpsAipayPaymentsFn);

Important Note:

You need to add below lines inside your iOS app's info.plist file to support UPI Intent payment mode.

<key>LSApplicationQueriesSchemes</key> 
<array> 
 <string>upi</string> 
 <string>phonepe</string> 
 <string>paytmmp</string> 
 <string>gpay</string>
 <string>tez</string> 
</array>

Readme

Keywords

Package Sidebar

Install

npm i ndps-aipay-ionic-capacitor

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

136 kB

Total Files

48

Last publish

Collaborators

  • ndpsnpmuser