Coder Social home page Coder Social logo

apricor-payments's Introduction

apricor-payments

The apricor-payments Node library provides integration access to the apricor-payments Gateway sandbox, This is demo application for API documentation and node library.

Installation

  • npm install apricor-payments
  • var apricorPayment = require('apricor-payments')

Dependencies

  • node >= 4

Quick Start

var apricorPayment = require('apricor-payments');

var gateway = apricorPayment({
  environment: 'stage', // 'prod'
  merchantId: 'your_merchant_id',
  merchantKey: 'your_merchant_key',
  applicationName: 'your_applicatin_name'
});

gateway.paymentOrder({
  amount: 50.00,
  currency: 'INR'
}, function (err, result) {
  if (err) {
    console.error(err);
    return;
  }

  console.log('Transaction details', result.transactionId);
  console.log('Transaction paid amount'. result.amountPaid);
});

API's for apricor-payment gateway sandbox

  • register and login
  • client application creation and settings
  • payment order, check balance etc

** Clone the repository and start the server npm start

// User Authentication
http://localhost:3000/api/developer/user/register
http://localhost:3000/api/developer/user/login

// Client Application Setup
http://localhost:3000/api/developer/createApplication
http://localhost:3000/api/developer/generateKey/:applicationId
http://localhost:3000/api/developer/applicationDetails/:applicationId
http://localhost:3000/api/developer/accountSettings/:applicationId

// Payment
http://localhost:3000/api/developer/payment/order
http://localhost:3000/api/developer/payment/checkbalance/:applicationId
http://localhost:3000/api/developer/payment/refund/:transactionId
http://localhost:3000/api/developer/payment/transaction/:transactionId
http://localhost:3000/api/developer/payment/transactions

apricor-payments's People

Contributors

mpraveenk29 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.