CaliStyle / infutor-node

IDMAX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Infutor SDK

NPM version Build Status Test Coverage Dependency Status

Strongly typed Node SDK for Inftor's IDMAX

Installation

npm install @calistyle/infutor

Documentation

Module documentation

Usage

Setup

const Infutor = require('@calistyle/infutor').Infutor
const infutor = new Infutor()

infutor.configure({
  login: 'your-username',
  password: 'your-password'
});

Customer

// retrieve a customer
nmi.customer.get({
  fname: 'John',
  lname: 'Smith',
  phone: '1234567890'
})

Handling Errors

try {
  let customer = await infutor.customer.get('<customer_obj>');

  // success!

}
catch(err) {

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

}

About

IDMAX


Languages

Language:TypeScript 85.5%Language:JavaScript 14.5%