1sc-api

1.0.1 • Public • Published

1SC-API

Node API for 1 Shopping Cart

Get Started

 
    //  One Shopping Cart api
    var OneShopClass=require('1sc-api');
    
    //  Get instance of api -- passing it access credentials
    var OneShopApi = new OneShopClass({
        merchantId: 'YOUR MERCHANT ID',
        merchantKey: 'YOUR MERCHANT KEY',
        apiUri: 'https://www.mcssl.com'
    });
 
    // Implements Promises
    api.getClientById(123456)
    .then(function(clientXML){
                // parse clientXML with your favorite xml to json converter
 
        },function(err){
                // handle error
 
            });
            
 

Readme

Keywords

Package Sidebar

Install

npm i 1sc-api

Weekly Downloads

3

Version

1.0.1

License

MIT

Last publish

Collaborators

  • tokyotoejam