@calistyle/nmi
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-alpha.4 • Public • Published

NMI SDK

NPM version Build Status Test Coverage Dependency Status

Strongly typed Node SDK for Networking Merchants Inc's (NMI) Three Step Redirect API, Query API, and Direct API

Installation

npm install @calistyle/nmi

Documentation

Module documentation

NMI Three Step Redirect API docs

Notes

All attribute names received from NMI will be converted to camelCase for uniformity. Attribute names sent to NMI will be converted to the appropriate hypen-case and param_case where appropriate. Additionally, some fields are aliased (e.g, postalCode => postal) to provide consistent access between the Three Step and Query APIs.

You can disable this completely by specifying transform: false in the configuration options.

Dispatched XML is generated by xmlbuilder.

Usage

Setup

const NMI = require('@calistyle/nmi').NMI
const nmi = new NMI({
  apiKey: 'your-key-here',
  username: 'your-username',
  password: 'your-password'
})

Transaction

// create a sale
nmi.transaction.create('sale', {
  amount: 2.99,
  redirectUrl: 'http://127.0.0.1/example',
  billing: {
    firstName: 'John',
    lastName: 'Doe'
  }
});

// execute a token
nmi.transaction.execute('the-token');

Handling Errors

try {
  let txn = await nmi.transaction.execute('<some-token>');

  // success!

}
catch(err) {

  if (err.isNMI) {
    // payment or gateway error - see err.response
  }
  else {
    // connection or outside error
  }

}

/@calistyle/nmi/

    Package Sidebar

    Install

    npm i @calistyle/nmi

    Weekly Downloads

    5

    Version

    1.0.0-alpha.4

    License

    none

    Unpacked Size

    22.8 kB

    Total Files

    16

    Last publish

    Collaborators

    • gpazo
    • scottbwyatt