1.0.1 • Published 9 years ago

1sc-api v1.0.1

Weekly downloads
41
License
MIT
Repository
github
Last release
9 years ago

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

			});