pxpost

3.0.0 • Public • Published

PxPost

Build Status Coverage Status

A node module for using the Payment Express PXPost service for payment processing. Currently only supporting making payments.

Install

$ npm install pxpost

Usage

var pxpost = require('pxpost')
 
pxpost.submit({
  user: 'PaymentExpressUser',
  password: 'PaymentExpressPassword',
  amount: '100.00',
  currency: 'NZD', //defaults to NZD
  transactionType: 'purchase', //default and currently only supported option
  reference: 'Merchant Reference',
  card: {
      name: 'John Doe',
      number: '4716710503591290',
      expiry:'1015',
      cvc2: '123'
  },
}, function (err, result) {
  if (err) {
    //do something
  } else {
    console.log(result.Authorized); //Will be 1 for successful transaction
  }
})

Notes

If you are running in production it uses the Payment Express production URL, otherwise it uses the UAT url.

Package Sidebar

Install

npm i pxpost

Weekly Downloads

3

Version

3.0.0

License

MIT

Unpacked Size

12.6 kB

Total Files

13

Last publish

Collaborators

  • kev_nz