Skip to content

LeisureLink/isi-client

Repository files navigation

isi-client

Client for ISI

CircleCI

Table of Contents

Installation

Install the client via NPM

$ npm install @leisurelink/isi-client --save

Usage

import Client from '@leisurelink/isi-client';

const client = Client({
  isi: {
      wsdl: '',
      tokenizerUrl: '',
      apiClientId: '',
      username: '',
      apiKey: '',
      password: ''
    },
  tokamak: {
      url: '',
      apiKey: '',
      creditCard: {
        token: '',
        type: '',
        expMonth: '',
        expYear: '',
        holder: '',
        address1: '',
        address2: '',
        city: '',
        state: '',
        zip: '',
        country: '',
        email: ''
      }
    }
});

API